├── LICENSE ├── README.md ├── legacy ├── LICENSE ├── README.md ├── chrome.manifest ├── chrome │ └── content │ │ ├── browser.xul │ │ ├── options.xul │ │ └── yourlsshortener.js ├── defaults │ └── preferences │ │ └── prefs.js ├── install.rdf ├── locale │ └── en-US │ │ └── translations.dtd └── skin │ ├── favicon-failed.gif │ ├── favicon-success.gif │ ├── favicon.gif │ └── skin.css └── webextension ├── LICENSE ├── README.md ├── background.js ├── lib.js ├── manifest.json ├── options.css ├── options.html ├── options.js ├── popup.css ├── popup.html ├── popup.js ├── yourls-tight.svg └── yourls.svg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/README.md -------------------------------------------------------------------------------- /legacy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/LICENSE -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/chrome.manifest -------------------------------------------------------------------------------- /legacy/chrome/content/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/chrome/content/browser.xul -------------------------------------------------------------------------------- /legacy/chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/chrome/content/options.xul -------------------------------------------------------------------------------- /legacy/chrome/content/yourlsshortener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/chrome/content/yourlsshortener.js -------------------------------------------------------------------------------- /legacy/defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /legacy/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/install.rdf -------------------------------------------------------------------------------- /legacy/locale/en-US/translations.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/locale/en-US/translations.dtd -------------------------------------------------------------------------------- /legacy/skin/favicon-failed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/skin/favicon-failed.gif -------------------------------------------------------------------------------- /legacy/skin/favicon-success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/skin/favicon-success.gif -------------------------------------------------------------------------------- /legacy/skin/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/skin/favicon.gif -------------------------------------------------------------------------------- /legacy/skin/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/legacy/skin/skin.css -------------------------------------------------------------------------------- /webextension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/LICENSE -------------------------------------------------------------------------------- /webextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/README.md -------------------------------------------------------------------------------- /webextension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/background.js -------------------------------------------------------------------------------- /webextension/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/lib.js -------------------------------------------------------------------------------- /webextension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/manifest.json -------------------------------------------------------------------------------- /webextension/options.css: -------------------------------------------------------------------------------- 1 | #message { 2 | margin-top: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /webextension/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/options.html -------------------------------------------------------------------------------- /webextension/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/options.js -------------------------------------------------------------------------------- /webextension/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/popup.css -------------------------------------------------------------------------------- /webextension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/popup.html -------------------------------------------------------------------------------- /webextension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/popup.js -------------------------------------------------------------------------------- /webextension/yourls-tight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/yourls-tight.svg -------------------------------------------------------------------------------- /webextension/yourls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binfalse/YOURLS-FirefoxExtension/HEAD/webextension/yourls.svg --------------------------------------------------------------------------------