සැකිල්ල:Load user script
(සැකිල්ල:Lusc වෙතින් යළි-යොමු කරන ලදි)
mw.loader.load( '{{subst:localurl:{{{1}}}|action=raw&ctype=text/javascript}}' ); // Backlink: [[{{{1}}}]]
මෙම සැකිල්ල අනිවාර්යයෙන් ම ආදේශනය කළ යුතුයි (භාවිතය උදාහරණයක් ලෙස, {{subst:Load user script}} ආකාර වේ). |
This template is used to install user scripts that reside on the English Wikipedia. It is to be used primarily on Special:MyPage/common.js or Special:MyPage/skin.js. It adds the necessary mw.loader.load
line along with a backlink.
Usage
සංස්කරණයIn order to install a user script for your Wikipedia account, add the following line to Special:MyPage/common.js or Special:MyPage/skin.js:
{{subst:lusc|script_path}}
- Replace
script_path
with the full .js page name of the user script to be installed. - The template must be substituted (
subst:
), or else it won't work. - Bypass your cache after saving the page.
Example
සංස්කරණය{{subst:lusc|User:Example/script.js}}
- Produces:
mw.loader.load( '/w/index.php?title=%E0%B6%B4%E0%B6%BB%E0%B7%92%E0%B7%81%E0%B7%93%E0%B6%BD%E0%B6%9A:Example/script.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Example/script.js]]
{{subst:lusc|User:Example/script.js|User:Example/script}}
- Produces:
mw.loader.load( '/w/index.php?title=%E0%B6%B4%E0%B6%BB%E0%B7%92%E0%B7%81%E0%B7%93%E0%B6%BD%E0%B6%9A:Example/script.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Example/script]]
See also
සංස්කරණය- {{Install user script}} ({{iusc}}) – Version of this script that uses the
importScript()
method. - {{Load user stylesheet}}