刚刚打开的Firefox Scratchpad包含以下文字:
/*
* This is a JavaScript Scratchpad.
*
* Enter some JavaScript, then Right Click or choose from the Execute Menu:
* 1. Run to evaluate the selected text (Ctrl+R),
* 2. Inspect to bring up an Object Inspector on the result (Ctrl+I), or,
* 3. Display to insert the result in a comment after the selection. (Ctrl+L)
*/
我想将其更改为更有用的内容,例如
(function(){
})();
如何?
答案 0 :(得分:2)
假设我们在Windows 7上运行的Firefox v38安装在{path_to_ff}
文件夹中。
文件{path_to_ff}/browser/omni.ja
包含许多定义FF内部的有用内容。此文件是.jar
文件,因此您只需使用您喜欢的文件存档即可打开/解压缩文件。
暂存器的介绍文本只是捆绑包中的文本资源,位于omni.ja/chrome/{lang}/locale/browser/devtools/scratchpad.properties
({lang}
是您的FF区域设置的语言代码,即' fr'在我的情况下)。此文本存储在scratchpadIntro1
键下:
# LOCALIZATION NOTE (scratchpadIntro): This is a multi-line comment explaining
# how to use the Scratchpad. Note that this should be a valid JavaScript
# comment inside /* and */.
scratchpadIntro1=/* THE TEXT */
更改文本时,请确保将其保留在一行并更新omni.ja
文件。还应重新启动FF以使更改生效。