Страницы: 1
Всем привет! Решил попробовать себя в создании плагинов, и сразу же столкнулся с проблемой: создал расширение, установил, в "Расширениях" его видно, но вот самой кнопки приложения нету(((
структура:
+helloworld
chrome.manifest
instal.rdf
+chrome
+content
contents.rdf
helloworld-overlay.xul
chrome.manifest:
content helloworld-overlay chrome/content/
overlay chrome://browser/content/browser.xul chrome://helloworld/content/helloworld-overlay.xul
instal.rdf:
<?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:creator>Vasya Pupkin</em:creator>
<em:description>A very simple Firefox extention</em:description>
<em:homepageURL>http://www.google.com/</em:homepageURL>
<em:id>{B724F473-5201-4e6d-BBE4-6912AC430D34}</em:id>
<em:name>HelloWorld</em:name>
<em:version>1.0</em:version>
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>1.0</em:minVersion>
<em:maxVersion>3.5.9</em:maxVersion>
</Description>
</em:targetApplication>
<em:file>
<Description about="urn:mozilla:extension:file:contetnt.jar">
<em:package>content/</em:package>
</Description>
</em:file>
</Description>
</RDF>
helloworld-overlay.xul:
<?xml version="1.0"?>
<overlay id="helloworld-Overlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<menupopup id="menu_ToolsPopup">
<menuitem label="&HelloWorld.label;" position="1" />
</menupopup>
</overlay>
Помогите плиз решить проблему!
Отредактировано travis182 (14-05-2010 03:59:54)
Отсутствует
Кнопки нету, должен появиться пункт в меню "Инструменты".
<menupopup id="menu_ToolsPopup">
<menuitem label="&HelloWorld.label;" position="1" />
</menupopup>
Может проблема в том, что хотел создать плагин, а почему-то получилось расширение?
Изначально расширение создавал, а не плагин.
Отсутствует
Страницы: 1