mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
c45b0a7641
Start with Mozilla's HelloWorld sample Firefox extension
13 lines
507 B
XML
13 lines
507 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://helloworld/skin/overlay.css" type="text/css"?>
|
|
<!DOCTYPE overlay SYSTEM "chrome://helloworld/locale/overlay.dtd">
|
|
<overlay id="helloworld-overlay"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script src="overlay.js"/>
|
|
|
|
<menupopup id="menu_ToolsPopup">
|
|
<menuitem id="helloworld-hello" label="&helloworld;"
|
|
oncommand="HelloWorld.onMenuItemCommand(event);"/>
|
|
</menupopup>
|
|
</overlay>
|