├── README ├── chrome.manifest ├── content ├── browser.js ├── browser.xul ├── firstrun.js ├── media │ ├── by.png │ ├── cc-plus.png │ ├── cc.png │ ├── cc.small.png │ ├── nc.png │ ├── nd.png │ ├── pd.png │ ├── remix.png │ ├── sa.png │ ├── share.png │ └── zero.png ├── pageInfo.js └── pageInfo.xul ├── defaults └── preferences │ └── preferences.js ├── doc ├── FUNCSPEC ├── WEBSITES └── proposal.pdf ├── icon.png ├── install.rdf ├── locale ├── en-US │ └── locale.properties └── ru-RU │ └── locale.properties ├── module ├── bootstrap.js ├── ccffext.js ├── hacks │ └── hacks.js ├── license.js └── rdfa.js ├── skin ├── browser.css ├── icon.svg ├── icon32.png ├── icon64.png └── pageInfo.css └── xpi.sh /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/README -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/chrome.manifest -------------------------------------------------------------------------------- /content/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/browser.js -------------------------------------------------------------------------------- /content/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/browser.xul -------------------------------------------------------------------------------- /content/firstrun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/firstrun.js -------------------------------------------------------------------------------- /content/media/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/by.png -------------------------------------------------------------------------------- /content/media/cc-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/cc-plus.png -------------------------------------------------------------------------------- /content/media/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/cc.png -------------------------------------------------------------------------------- /content/media/cc.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/cc.small.png -------------------------------------------------------------------------------- /content/media/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/nc.png -------------------------------------------------------------------------------- /content/media/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/nd.png -------------------------------------------------------------------------------- /content/media/pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/pd.png -------------------------------------------------------------------------------- /content/media/remix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/remix.png -------------------------------------------------------------------------------- /content/media/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/sa.png -------------------------------------------------------------------------------- /content/media/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/share.png -------------------------------------------------------------------------------- /content/media/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/media/zero.png -------------------------------------------------------------------------------- /content/pageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/pageInfo.js -------------------------------------------------------------------------------- /content/pageInfo.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/content/pageInfo.xul -------------------------------------------------------------------------------- /defaults/preferences/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/defaults/preferences/preferences.js -------------------------------------------------------------------------------- /doc/FUNCSPEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/doc/FUNCSPEC -------------------------------------------------------------------------------- /doc/WEBSITES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/doc/WEBSITES -------------------------------------------------------------------------------- /doc/proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/doc/proposal.pdf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/install.rdf -------------------------------------------------------------------------------- /locale/en-US/locale.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/locale/en-US/locale.properties -------------------------------------------------------------------------------- /locale/ru-RU/locale.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/locale/ru-RU/locale.properties -------------------------------------------------------------------------------- /module/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/module/bootstrap.js -------------------------------------------------------------------------------- /module/ccffext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/module/ccffext.js -------------------------------------------------------------------------------- /module/hacks/hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/module/hacks/hacks.js -------------------------------------------------------------------------------- /module/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/module/license.js -------------------------------------------------------------------------------- /module/rdfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/module/rdfa.js -------------------------------------------------------------------------------- /skin/browser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/skin/browser.css -------------------------------------------------------------------------------- /skin/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/skin/icon.svg -------------------------------------------------------------------------------- /skin/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/skin/icon32.png -------------------------------------------------------------------------------- /skin/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/skin/icon64.png -------------------------------------------------------------------------------- /skin/pageInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/skin/pageInfo.css -------------------------------------------------------------------------------- /xpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyergler/openattribute-firefox/HEAD/xpi.sh --------------------------------------------------------------------------------