├── README.md ├── changelog-ru.md ├── changelog.md ├── chrome.manifest ├── chrome ├── content │ ├── content.js │ ├── content.jsm │ ├── contentUtils.jsm │ ├── detect.jsm │ ├── icons16.png │ ├── icons24.png │ ├── notify.xul │ ├── options.xul │ ├── prefUtils.js │ ├── prefs.jsm │ ├── prefsMigration.js │ ├── rightlinks.css │ ├── rightlinks.js │ └── rightlinks.xul └── locale │ ├── bg │ ├── rl.dtd │ └── rl.properties │ ├── de │ ├── rl.dtd │ └── rl.properties │ ├── en-US │ ├── rl.dtd │ └── rl.properties │ └── ru │ ├── rl.dtd │ └── rl.properties ├── defaults └── preferences │ └── rightlinks_prefs.js ├── install.rdf ├── license.txt ├── make.bat └── make.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/README.md -------------------------------------------------------------------------------- /changelog-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/changelog-ru.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/changelog.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/content.js -------------------------------------------------------------------------------- /chrome/content/content.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/content.jsm -------------------------------------------------------------------------------- /chrome/content/contentUtils.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/contentUtils.jsm -------------------------------------------------------------------------------- /chrome/content/detect.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/detect.jsm -------------------------------------------------------------------------------- /chrome/content/icons16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/icons16.png -------------------------------------------------------------------------------- /chrome/content/icons24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/icons24.png -------------------------------------------------------------------------------- /chrome/content/notify.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/notify.xul -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/prefUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/prefUtils.js -------------------------------------------------------------------------------- /chrome/content/prefs.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/prefs.jsm -------------------------------------------------------------------------------- /chrome/content/prefsMigration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/prefsMigration.js -------------------------------------------------------------------------------- /chrome/content/rightlinks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/rightlinks.css -------------------------------------------------------------------------------- /chrome/content/rightlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/rightlinks.js -------------------------------------------------------------------------------- /chrome/content/rightlinks.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/content/rightlinks.xul -------------------------------------------------------------------------------- /chrome/locale/bg/rl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/bg/rl.dtd -------------------------------------------------------------------------------- /chrome/locale/bg/rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/bg/rl.properties -------------------------------------------------------------------------------- /chrome/locale/de/rl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/de/rl.dtd -------------------------------------------------------------------------------- /chrome/locale/de/rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/de/rl.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/rl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/en-US/rl.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/en-US/rl.properties -------------------------------------------------------------------------------- /chrome/locale/ru/rl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/ru/rl.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/chrome/locale/ru/rl.properties -------------------------------------------------------------------------------- /defaults/preferences/rightlinks_prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/defaults/preferences/rightlinks_prefs.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/install.rdf -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/license.txt -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/make.bat -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Right_Links/HEAD/make.sh --------------------------------------------------------------------------------