新打开的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(){
})();
如何?
假设在Windows7上运行的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也应重新启动,以便更改生效。