├── CHANGELOG.txt ├── COPYING.txt ├── README.markdown ├── build.sh ├── builds ├── disconnect.nex ├── disconnect.plist ├── disconnect.safariextz ├── disconnect.xpi └── disconnect.zip ├── collateral ├── 100.png ├── 112.png ├── chrome │ ├── marquee.png │ ├── privacy.png │ ├── speed.png │ ├── tile-large.png │ ├── tile-small.png │ └── visualization.png ├── disconnect │ ├── d2-category-transparent.png │ ├── d2-category-white.png │ ├── d2-faster-transparent.png │ ├── d2-faster-white.png │ ├── d2-graph-infocard-transparent.png │ ├── d2-graph-infocard-white.png │ ├── d2-graph-transparent.png │ ├── d2-graph-white.png │ ├── d2-transparent.png │ └── d2-white.png ├── firefox │ ├── privacy.png │ ├── security.png │ └── speed.png ├── logo │ ├── raster │ │ ├── disconnect-black-large.png │ │ ├── disconnect-black-medium.png │ │ ├── disconnect-black-small.png │ │ ├── disconnect-green-large.png │ │ ├── disconnect-green-medium.png │ │ └── disconnect-green-small.png │ └── vector │ │ ├── disconnect-black.eps │ │ └── disconnect-green.eps └── opera │ ├── privacy.png │ ├── recommended.png │ ├── speed-dial.png │ ├── speed.png │ └── visualization.png └── firefox ├── chrome.manifest ├── components └── policy.js ├── content ├── .DS_Store ├── 16.png ├── 24.png ├── debug.js ├── disconnect.safariextension │ ├── Icon-32.png │ ├── Icon-48.png │ ├── Icon.png │ ├── Info.plist │ └── opera │ │ ├── chrome │ │ ├── data │ │ │ └── services.json │ │ ├── fonts │ │ │ ├── 69e03e4b-d31e-4a31-b803-d31679c0e921-1.ttf │ │ │ ├── 69e03e4b-d31e-4a31-b803-d31679c0e921-2.eot │ │ │ ├── 69e03e4b-d31e-4a31-b803-d31679c0e921-3.woff │ │ │ ├── 69e03e4b-d31e-4a31-b803-d31679c0e921-4.svg │ │ │ └── license.txt │ │ ├── images │ │ │ ├── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 2 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 3 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 4 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 5 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 19.png │ │ │ ├── 32-placeholder.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 64.png │ │ │ ├── advertising │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── analytics │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── categories.png │ │ │ ├── check.png │ │ │ ├── chrollusion │ │ │ │ ├── brandyourself.ico │ │ │ │ ├── chrome.png │ │ │ │ ├── close-hover.png │ │ │ │ ├── close.png │ │ │ │ ├── dashlane.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── safari.png │ │ │ │ └── share.png │ │ │ ├── content │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── d.png │ │ │ ├── dashboard.png │ │ │ ├── disconnect-highlighted.png │ │ │ ├── disconnect.png │ │ │ ├── expand-highlighted.png │ │ │ ├── expand.png │ │ │ ├── expand │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-highlighted.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-highlighted.png │ │ │ │ ├── 11.png │ │ │ │ ├── 2-highlighted.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-highlighted.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-highlighted.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-highlighted.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-highlighted.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-highlighted.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-highlighted.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-highlighted.png │ │ │ │ └── 9.png │ │ │ ├── facebook-highlighted.png │ │ │ ├── facebook.png │ │ │ ├── facebook │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── google │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── heart.png │ │ │ ├── legacy │ │ │ │ ├── 19.png │ │ │ │ ├── 32.png │ │ │ │ ├── facebook-activated.png │ │ │ │ ├── facebook-deactivated.png │ │ │ │ ├── google-activated.png │ │ │ │ ├── google-deactivated.png │ │ │ │ ├── linkedin-activated.png │ │ │ │ ├── linkedin-deactivated.png │ │ │ │ ├── twitter-activated.png │ │ │ │ ├── twitter-deactivated.png │ │ │ │ ├── yahoo-activated.png │ │ │ │ └── yahoo-deactivated.png │ │ │ ├── list │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── shortcuts.png │ │ │ ├── social │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ ├── twitter-highlighted.png │ │ │ ├── twitter.png │ │ │ ├── twitter │ │ │ │ ├── 1-deactivated-highlighted.png │ │ │ │ ├── 1-deactivated.png │ │ │ │ ├── 1-highlighted.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10-deactivated.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11-deactivated.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12-deactivated.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13-deactivated.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14-deactivated.png │ │ │ │ ├── 14.png │ │ │ │ ├── 2-deactivated.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3-deactivated.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4-deactivated.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5-deactivated.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6-deactivated.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7-deactivated.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8-deactivated.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9-deactivated.png │ │ │ │ └── 9.png │ │ │ └── upgrade-shield.png │ │ ├── manifest.json │ │ ├── markup │ │ │ ├── background.html │ │ │ ├── embed.html │ │ │ └── popup.html │ │ ├── scripts │ │ │ ├── background.js │ │ │ ├── chrollusion │ │ │ │ ├── collusion-addon.js │ │ │ │ ├── graphrunner.js │ │ │ │ ├── index-content-script.js │ │ │ │ ├── index-embed.js │ │ │ │ └── index.js │ │ │ ├── content.js │ │ │ ├── embed.js │ │ │ ├── popup.js │ │ │ ├── services.js │ │ │ ├── share.js │ │ │ └── vendor │ │ │ │ ├── d3 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── d3-3.js │ │ │ │ ├── d3.geom.js │ │ │ │ ├── d3.js │ │ │ │ └── d3.layout.js │ │ │ │ ├── favicon │ │ │ │ └── favicon.js │ │ │ │ ├── jquery │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ └── jquery.js │ │ │ │ ├── moment │ │ │ │ └── moment.js │ │ │ │ └── sitename │ │ │ │ ├── alttlds.js │ │ │ │ ├── data │ │ │ │ ├── effective_tld_names.dat │ │ │ │ └── tldpatch.json │ │ │ │ ├── sitename.js │ │ │ │ └── tldpatch.js │ │ └── stylesheets │ │ │ ├── chrollusion │ │ │ └── index.css │ │ │ ├── content.css │ │ │ ├── embed.css │ │ │ ├── legacy.css │ │ │ ├── popup.css │ │ │ └── vendor │ │ │ └── hint │ │ │ ├── LICENSE-MIT.txt │ │ │ └── hint.css │ │ └── manifest.json ├── hint.css ├── overlay.css ├── overlay.js ├── overlay.xul ├── services.js └── sitename.js ├── defaults └── preferences │ └── defaults.js ├── icon.png ├── install.rdf └── modules └── state.js /CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Disconnect changelog 2 | (For Chrome, Firefox, and Safari) 3 | 4 | Disconnect stops third parties and search engines from tracking the webpages you 5 | go to and searches you do. 6 | 7 | --- July 11, 2012 -------------------------------------------------------------- 8 | 9 | v3.5 (Chrome) 10 | v2.0 (Safari) 11 | 12 | * Reimplements the code without a third-party framework for Safari. 13 | * Adds a per-site whitelist (your filtering options are remembered by site). 14 | * Updates the look and feel. 15 | * Links to new and improved support resources. 16 | * Extends AdBlock's porting library for developers. 17 | * Expands the filtering coverage. 18 | * Swaps LinkedIn for Digg on the list of services. 19 | * Color-codes the tracking counter (gray indicates unblocked requests). 20 | * Labels blocked and unblocked services more clearly. 21 | * Removes search depersonalization (may be re-added later depending on demand). 22 | * Reloads the active tab whenever a service is blocked or unblocked in Chrome. 23 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | # Disconnect 2 | 3 | [Disconnect](https://disconnect.me/) is a browser extension that makes the web 4 | faster, more private, and more secure. 5 | 6 | ![Disconnect](collateral/disconnect/d2-faster-transparent.png) 7 | Disconnect has been named one of the 8 | [100 best innovations of the year](http://www.popsci.com/bown/2013/category/software) 9 | by Popular Science and one of the 10 | [20 best Chrome extensions](http://lifehacker.com/lifehacker-pack-for-chrome-2013-our-list-of-the-best-e-880863393) 11 | and 12 | [20 best Firefox add-ons](http://lifehacker.com/lifehacker-pack-for-firefox-2013-our-list-of-the-best-896766794) 13 | by Lifehacker. 14 | 15 | You might fancy [watching a demo](https://www.youtube.com/watch?v=Lvem1Z66C7Q) 16 | or [trying the extension](https://disconnect.me/). 17 | 18 | ## Dev HOWTO 19 | 20 | 0. Fork this repository. 21 | 1. Switch to your working directory of choice. 22 | 2. Clone the development repo: 23 | 24 | git clone git@github.com:[username]/disconnect.git 25 | 26 | ### In Chrome 27 | 28 | 3. Go to the Chrome menu > **Tools** > **Extensions**. 29 | 4. Check **Developer mode** then press **Load unpacked extension...** . 30 | 5. Find your working directory. 31 | 6. Under `firefox`, `content`, `disconnect.safariextension`, and `opera`, select 32 | `chrome`. 33 | 7. To test after you make a change, be sure to expand the extension listing then 34 | press **Reload**. 35 | 8. Push your changes. 36 | 9. Send us pull requests! 37 | 38 | ### In Firefox 39 | 40 | 3. Go to 41 | [your Mozilla profile folder](http://kb.mozillazine.org/Profile_folder). 42 | 4. Under `extensions`, create a new text file. 43 | 5. Enter the path to your working directory followed by `firefox` then a closing 44 | slash in the file. 45 | 6. Save the file as `2.0@disconnect.me`. 46 | 7. (Re)start Firefox. 47 | 8. To test after you make a change, be sure to restart Firefox. 48 | 9. Push your changes. 49 | 10. Send us pull requests! 50 | 51 | ### In Safari 52 | 53 | 3. Go to **Develop** > **Show Extension Builder**. 54 | 4. Click **+** then select **Add Extension...** . 55 | 5. Find your working directory. 56 | 6. Under `firefox` and `content`, select `disconnect.safariextension`. 57 | 7. Click **Install** then **Allow**. 58 | 8. To test after you make a change, be sure to click **Reload** then **Allow**. 59 | 9. Push your changes. 60 | 10. Send us pull requests! 61 | 62 | ### In Opera 63 | 64 | 3. Go to **Window** > **Extensions**. 65 | 4. Press **Developer Mode** then press **Load Unpacked Extension...** . 66 | 5. Find your working directory. 67 | 6. Under `firefox`, `content`, and `disconnect.safariextension`, select `opera`. 68 | 7. To test after you make a change, be sure to press **Reload**. 69 | 8. Push your changes. 70 | 9. Send us pull requests! 71 | 72 | ## Software used 73 | 74 | These libraries are bundled with the project and needn’t be updated manually: 75 | 76 | * [jQuery](https://github.com/jquery/jquery) 77 | * [SJCL](https://github.com/bitwiseshiftleft/sjcl) 78 | * [D3.js](https://github.com/mbostock/d3) 79 | * [port.js](https://github.com/disconnectme/port) 80 | * [sitename.js](https://github.com/disconnectme/sitename) 81 | * [favicon.js](https://github.com/disconnectme/favicon) 82 | 83 | ## License 84 | 85 | Copyright 2010–2019 Disconnect, Inc. 86 | 87 | This program is free software, excluding the brand features and third-party 88 | portions of the program identified in the “Exceptions” below: you can 89 | redistribute it and/or modify it under the terms of the GNU General Public 90 | License as published by the Free Software Foundation, either version 3 of the 91 | License, or (at your option) any later version. 92 | 93 | This program is distributed in the hope that it will be useful, but WITHOUT ANY 94 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 95 | PARTICULAR PURPOSE. See the 96 | [GNU General Public License](https://www.gnu.org/licenses/gpl.html) for more 97 | details. 98 | 99 | ## Exceptions 100 | 101 | The Disconnect logos, trademarks, domain names, and other brand features used in 102 | this program cannot be reused without permission and no license is granted 103 | thereto. 104 | 105 | Further, the following third-party portions of the program and any use thereof 106 | are subject to their own license terms as set forth below: 107 | 108 | * [Antenna RE](https://github.com/disconnectme/disconnect/tree/master/firefox/content/disconnect.safariextension/opera/chrome/fonts) 109 | replaces system fonts and is the valuable copyrighted property of WebType LLC, 110 | The Font Bureau, and/or their suppliers. You may not attempt to copy, install, 111 | redistribute, convert, modify, or reverse engineer this font software. Please 112 | contact [WebType](http://www.webtype.com/) with any questions. Antenna RE can 113 | be removed and will be replaced with a system font. 114 | 115 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # A script that packages Disconnect for distribution. 3 | # 4 | # Copyright 2014 Disconnect, Inc. 5 | # 6 | # This program is free software: you can redistribute it and/or modify it under 7 | # the terms of the GNU General Public License as published by the Free Software 8 | # Foundation, either version 3 of the License, or (at your option) any later 9 | # version. 10 | # 11 | # This program is distributed in the hope that it will be useful, but WITHOUT 12 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License along with 16 | # this program. If not, see . 17 | # 18 | # Authors (one per line): 19 | # 20 | # Eason Goodale 21 | # Brian Kennish 22 | 23 | cd ./builds 24 | rm disconnect.xpi disconnect.zip 25 | 26 | cd ../firefox 27 | cp -r ./content/disconnect.safariextension/opera/chrome/ ./content/disconnect/ 28 | 29 | rm ./content/disconnect/images/legacy/\* \ 30 | ./content/disconnect/manifest.json \ 31 | ./content/disconnect/markup/\* \ 32 | ./content/disconnect/scripts/background.js \ 33 | ./content/disconnect/scripts/chrollusion/graphrunner.js \ 34 | ./content/disconnect/scripts/chrollusion/index-embed.js \ 35 | ./content/disconnect/scripts/chrollusion/index.js \ 36 | ./content/disconnect/scripts/content.js \ 37 | ./content/disconnect/scripts/popup.js \ 38 | ./content/disconnect/scripts/services.js \ 39 | ./content/disconnect/scripts/share.js \ 40 | ./content/disconnect/scripts/vendor/moment/\* \ 41 | ./content/disconnect/scripts/vendor/port/\* \ 42 | ./content/disconnect/scripts/vendor/tipped/\* \ 43 | ./content/disconnect/stylesheets/chrollusion/\* \ 44 | ./content/disconnect/stylesheets/content.css \ 45 | ./content/disconnect/stylesheets/legacy.css \ 46 | ./content/disconnect/stylesheets/popup.css \ 47 | ./content/disconnect/stylesheets/vendor/hint/\* \ 48 | ./content/disconnect/stylesheets/vendor/tipped/\* 49 | 50 | zip -r ../builds/disconnect.xpi * -x \*.DS_Store \ 51 | content/disconnect.safariextension/**\* \ 52 | content/disconnect.safariextension/ 53 | 54 | rm -rf ./content/disconnect/ 55 | 56 | cd content/disconnect.safariextension/opera 57 | zip -r ../../../../builds/disconnect chrome -x \*.DS_Store 58 | -------------------------------------------------------------------------------- /builds/disconnect.nex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/builds/disconnect.nex -------------------------------------------------------------------------------- /builds/disconnect.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Extension Updates 6 | 7 | 8 | CFBundleIdentifier 9 | me.disconnect.disconnect 10 | Developer Identifier 11 | 3XK29JV5B2 12 | CFBundleVersion 13 | 10 14 | CFBundleShortVersionString 15 | 3.0.3 16 | URL 17 | https://disconnect.me/disconnect.safariextz 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /builds/disconnect.safariextz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/builds/disconnect.safariextz -------------------------------------------------------------------------------- /builds/disconnect.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/builds/disconnect.xpi -------------------------------------------------------------------------------- /builds/disconnect.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/builds/disconnect.zip -------------------------------------------------------------------------------- /collateral/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/100.png -------------------------------------------------------------------------------- /collateral/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/112.png -------------------------------------------------------------------------------- /collateral/chrome/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/marquee.png -------------------------------------------------------------------------------- /collateral/chrome/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/privacy.png -------------------------------------------------------------------------------- /collateral/chrome/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/speed.png -------------------------------------------------------------------------------- /collateral/chrome/tile-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/tile-large.png -------------------------------------------------------------------------------- /collateral/chrome/tile-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/tile-small.png -------------------------------------------------------------------------------- /collateral/chrome/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/chrome/visualization.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-category-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-category-transparent.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-category-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-category-white.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-faster-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-faster-transparent.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-faster-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-faster-white.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-graph-infocard-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-graph-infocard-transparent.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-graph-infocard-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-graph-infocard-white.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-graph-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-graph-transparent.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-graph-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-graph-white.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-transparent.png -------------------------------------------------------------------------------- /collateral/disconnect/d2-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/disconnect/d2-white.png -------------------------------------------------------------------------------- /collateral/firefox/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/firefox/privacy.png -------------------------------------------------------------------------------- /collateral/firefox/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/firefox/security.png -------------------------------------------------------------------------------- /collateral/firefox/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/firefox/speed.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-black-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-black-large.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-black-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-black-medium.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-black-small.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-green-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-green-large.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-green-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-green-medium.png -------------------------------------------------------------------------------- /collateral/logo/raster/disconnect-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/raster/disconnect-green-small.png -------------------------------------------------------------------------------- /collateral/logo/vector/disconnect-black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/vector/disconnect-black.eps -------------------------------------------------------------------------------- /collateral/logo/vector/disconnect-green.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/logo/vector/disconnect-green.eps -------------------------------------------------------------------------------- /collateral/opera/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/opera/privacy.png -------------------------------------------------------------------------------- /collateral/opera/recommended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/opera/recommended.png -------------------------------------------------------------------------------- /collateral/opera/speed-dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/opera/speed-dial.png -------------------------------------------------------------------------------- /collateral/opera/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/opera/speed.png -------------------------------------------------------------------------------- /collateral/opera/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/collateral/opera/visualization.png -------------------------------------------------------------------------------- /firefox/chrome.manifest: -------------------------------------------------------------------------------- 1 | # A chrome manifest that makes the web faster, more private, and more secure. 2 | # 3 | # Copyright 2010-2013 Disconnect, Inc. 4 | # 5 | # This program is free software: you can redistribute it and/or modify it under 6 | # the terms of the GNU General Public License as published by the Free Software 7 | # Foundation, either version 3 of the License, or (at your option) any later 8 | # version. 9 | # 10 | # This program is distributed in the hope that it will be useful, but WITHOUT 11 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 12 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13 | # 14 | # You should have received a copy of the GNU General Public License along with 15 | # this program. If not, see . 16 | # 17 | # Authors (one per line): 18 | # 19 | # Brian Kennish 20 | 21 | # Modules. 22 | resource disconnect modules/ 23 | 24 | # The content policy. 25 | component {3f722c5d-555d-4fbc-9444-c5e0d963de8f} components/policy.js 26 | contract @disconnect.me/d2;1 {3f722c5d-555d-4fbc-9444-c5e0d963de8f} 27 | category content-policy @disconnect.me/d2;1 @disconnect.me/d2;1 28 | 29 | # The overlay. 30 | content disconnect content/ 31 | skin disconnect default content/disconnect/ 32 | overlay chrome://browser/content/browser.xul chrome://disconnect/content/overlay.xul 33 | style chrome://global/content/customizeToolbar.xul chrome://disconnect/content/overlay.css 34 | -------------------------------------------------------------------------------- /firefox/content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/.DS_Store -------------------------------------------------------------------------------- /firefox/content/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/16.png -------------------------------------------------------------------------------- /firefox/content/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/24.png -------------------------------------------------------------------------------- /firefox/content/debug.js: -------------------------------------------------------------------------------- 1 | /* 2 | A script for troubleshooting. 3 | 4 | Copyright 2012 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | 23 | /** 24 | * Sends a message to the Error Console. 25 | */ 26 | function debug(message) { 27 | Components.classes['@mozilla.org/consoleservice;1']. 28 | getService(Components.interfaces.nsIConsoleService). 29 | logStringMessage(message); 30 | } 31 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/Icon-32.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/Icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/Icon-48.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/Icon.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Disconnect 7 | Builder Version 8 | 9537.75.14 9 | CFBundleDisplayName 10 | Disconnect 11 | CFBundleIdentifier 12 | me.disconnect.disconnect 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleShortVersionString 16 | 3.0.3 17 | CFBundleVersion 18 | 10 19 | Chrome 20 | 21 | Database Quota 22 | 104857600 23 | Global Page 24 | opera/chrome/markup/background.html 25 | Toolbar Items 26 | 27 | 28 | Identifier 29 | browser_action 30 | Image 31 | opera/chrome/images/32-placeholder.png 32 | Label 33 | Disconnect 34 | Popover 35 | 36 | Tool Tip 37 | View and manage blocked requests 38 | 39 | 40 | 41 | Content 42 | 43 | Scripts 44 | 45 | Start 46 | 47 | opera/chrome/scripts/vendor/port/port.js 48 | opera/chrome/scripts/vendor/jquery/jquery.js 49 | opera/chrome/scripts/vendor/sitename/alttlds.js 50 | opera/chrome/scripts/vendor/sitename/tldpatch.js 51 | opera/chrome/scripts/vendor/sitename/sitename.js 52 | opera/chrome/scripts/content.js 53 | 54 | 55 | Stylesheets 56 | 57 | opera/chrome/stylesheets/content.css 58 | 59 | 60 | Description 61 | Make the web faster, more private, and more secure. 62 | ExtensionInfoDictionaryVersion 63 | 1.0 64 | Permissions 65 | 66 | Website Access 67 | 68 | Include Secure Pages 69 | 70 | Level 71 | All 72 | 73 | 74 | Update Manifest URL 75 | https://disconnect.me/disconnect.plist 76 | Website 77 | https://disconnect.me/ 78 | 79 | 80 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-1.ttf -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-2.eot -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/fonts/69e03e4b-d31e-4a31-b803-d31679c0e921-3.woff -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/fonts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/fonts/license.txt -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/1/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/128.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/16.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/19.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/2/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/3/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/3/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/32-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/32-placeholder.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/32.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/4/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/4/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/48.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/5/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/5/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/64.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/advertising/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/advertising/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/analytics/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/analytics/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/categories.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/check.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/brandyourself.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/brandyourself.ico -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/chrome.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/close-hover.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/close.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/dashlane.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/dashlane.ico -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/favicon.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/safari.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/chrollusion/share.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/content/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/content/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/d.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/dashboard.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/disconnect-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/disconnect-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/disconnect.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/10-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/10-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/11-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/11-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/2-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/2-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/3-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/3-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/4-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/4-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/5-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/5-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/6-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/6-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/7-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/7-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/8-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/8-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/9-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/9-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/expand/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/expand/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/facebook/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/facebook/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/google/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/google/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/heart.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/19.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/32.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/facebook-activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/facebook-activated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/facebook-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/facebook-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/google-activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/google-activated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/google-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/google-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/linkedin-activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/linkedin-activated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/linkedin-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/linkedin-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/twitter-activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/twitter-activated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/twitter-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/twitter-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/yahoo-activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/yahoo-activated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/legacy/yahoo-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/legacy/yahoo-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/15.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/16.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/17.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/18.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/19.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/20.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/list/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/list/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/shortcuts.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/social/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/social/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-deactivated-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-deactivated-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1-highlighted.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/1.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/10-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/10-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/10.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/11-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/11-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/11.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/12-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/12-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/12.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/13-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/13-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/13.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/14-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/14-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/14.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/2-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/2-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/2.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/3-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/3-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/3.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/4-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/4-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/4.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/5-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/5-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/5.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/6-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/6-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/6.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/7-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/7-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/7.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/8-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/8-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/8.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/9-deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/9-deactivated.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/twitter/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/twitter/9.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/images/upgrade-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/content/disconnect.safariextension/opera/chrome/images/upgrade-shield.png -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Disconnect", 4 | "version": "5.19.3", 5 | "description": "Make the web faster, more private, and more secure.", 6 | "icons": {"48": "images/48.png", "128": "images/128.png"}, 7 | "permissions": [ 8 | "cookies", 9 | "tabs", 10 | "unlimitedStorage", 11 | "webNavigation", 12 | "webRequest", 13 | "webRequestBlocking", 14 | "http://*/*", 15 | "https://*/*" 16 | ], 17 | "web_accessible_resources": [], 18 | "background": { 19 | "scripts": [ 20 | "scripts/vendor/moment/moment.js", 21 | "scripts/vendor/jquery/jquery.js", 22 | "scripts/vendor/sitename/alttlds.js", 23 | "scripts/vendor/sitename/tldpatch.js", 24 | "scripts/vendor/sitename/sitename.js", 25 | "scripts/services.js", 26 | "scripts/background.js" 27 | ] 28 | }, 29 | "browser_action": {"default_title": "View and manage requests"}, 30 | "content_scripts": [{ 31 | "matches": ["http://*/*", "https://*/*"], 32 | "css": ["stylesheets/content.css"], 33 | "js": [ 34 | "scripts/vendor/jquery/jquery.js", 35 | "scripts/vendor/sitename/alttlds.js", 36 | "scripts/vendor/sitename/tldpatch.js", 37 | "scripts/vendor/sitename/sitename.js", 38 | "scripts/content.js" 39 | ], 40 | "run_at": "document_start", 41 | "all_frames": true 42 | }] 43 | } 44 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/markup/background.html: -------------------------------------------------------------------------------- 1 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/chrollusion/collusion-addon.js: -------------------------------------------------------------------------------- 1 | var CollusionAddon = (function() { 2 | var self = { 3 | isInstalled: function() { 4 | return ('onGraph' in window); 5 | }, 6 | onGraph: window.onGraph, 7 | resetGraph: window.resetGraph 8 | }; 9 | 10 | return self; 11 | })(); 12 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/chrollusion/index-content-script.js: -------------------------------------------------------------------------------- 1 | var graphCallback = null; 2 | 3 | function onGraph(cb) { 4 | graphCallback = cb; 5 | } 6 | 7 | function resetGraph() {} 8 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/content.js: -------------------------------------------------------------------------------- 1 | /* 2 | A content script that blocks requests to blacklisted domains. 3 | 4 | Copyright 2010-2013 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | 23 | /* Retrieves the third-party metadata, if any, associated with a domain name. */ 24 | function getService(domain) { return servicePointer[domain]; } 25 | 26 | /* The "extension" API. */ 27 | var EXTENSION = chrome.extension; 28 | 29 | /* The active categories et al. */ 30 | var servicePointer; 31 | 32 | if (location.href.indexOf('disconnect.me') + 1) { 33 | $(function() { 34 | var CONTROL = document.getElementById('input-type'); 35 | var BUCKET = CONTROL && CONTROL.getAttribute('value'); 36 | BUCKET && EXTENSION.sendRequest({pwyw: true, bucket: BUCKET}); 37 | 38 | if (location.href.indexOf('paysomething') + 1) { 39 | var remindMe = document.getElementById('no'); 40 | var alreadyPaid = document.getElementById('already-paid'); 41 | var emailed = document.getElementById('email'); 42 | 43 | remindMe && remindMe.addEventListener('click', function(e) { 44 | EXTENSION.sendRequest({ 45 | deleteTab: true 46 | }); 47 | }, false); 48 | alreadyPaid && alreadyPaid.addEventListener('click', function(e) { 49 | EXTENSION.sendRequest({pwyw: true, bucket: "already-paid"}); 50 | EXTENSION.sendRequest({ 51 | deleteTab: true 52 | }); 53 | }, false); 54 | emailed && emailed.addEventListener('click', function(e) { 55 | EXTENSION.sendRequest({pwyw: true, bucket: "emailed"}); 56 | EXTENSION.sendRequest({ 57 | deleteTab: true 58 | }); 59 | }, false); 60 | } 61 | }); 62 | } 63 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/share.js: -------------------------------------------------------------------------------- 1 | /* 2 | A script for sharing Disconnect. 3 | 4 | Copyright 2012 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | 23 | /* Handles clicks. */ 24 | $(function() { 25 | $('#share').click(function() { 26 | open( 27 | 'https://www.facebook.com/sharer/sharer.php?u=https://www.youtube.com/watch?v=g5mFbgxMHqQ', 28 | null, 29 | 'width=500,height=316' 30 | ); 31 | }); 32 | 33 | $('#tweet').click(function() { 34 | open( 35 | 'https://twitter.com/share?url=https://www.youtube.com/watch?v=g5mFbgxMHqQ&text=See how an attacker can break into your accounts through social widgets and how you can stop them (by @disconnectme):', 36 | null, 37 | 'width=500,height=257' 38 | ); 39 | }); 40 | }); 41 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/d3/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013, Michael Bostock 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, this 8 | list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | * The name Michael Bostock may not be used to endorse or promote products 15 | derived from this software without specific prior written permission. 16 | 17 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 20 | DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, 21 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 22 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 24 | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 25 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 26 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/favicon/favicon.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class for finding a website’s favicon URL, if any. Requires a context, like 3 | * a browser extension, that allows cross-origin requests. 4 | *
5 | *
6 | * Copyright 2012, 2013 Disconnect, Inc. 7 | *
8 | *
9 | * This Source Code Form is subject to the terms of the Mozilla Public License, 10 | * v. 2.0. If a copy of the MPL was not distributed with this file, You can 11 | * obtain one at https://mozilla.org/MPL/2.0/. 13 | *
14 | * @constructor 15 | * @param {string} [alt] A default favicon URL, absolute or relative. 16 | * @author Brian Kennish 17 | */ 18 | function Favicon(alt) { 19 | /** 20 | * Fetches the default favicon URL. 21 | * @return {string} An absolute or relative URL. 22 | */ 23 | this.getAlt = function() { return alt; }; 24 | 25 | /** 26 | * Mungs the default favicon URL. 27 | * @param {string} alt An absolute or relative URL. 28 | * @return {Favicon} The favicon object. 29 | */ 30 | this.setAlt = function(newAlt) { 31 | alt = newAlt; 32 | return this; 33 | }; 34 | 35 | /** 36 | * Finds a favicon URL. 37 | * @param {string} url A website’s absolute URL or hostname. 38 | * @param {function(string)} callback A continuation, to execute when the 39 | * method completes, that takes a favicon 40 | * URL. 41 | * @return {Favicon} The favicon object. 42 | */ 43 | this.get = function(url, callback) { 44 | var favicon = this.getAlt(); 45 | if (typeof favicon != undeclared) callback(favicon); 46 | 47 | var id = setInterval(function() { 48 | if (typeof jQuery != undeclared) { 49 | clearInterval(id); 50 | 51 | if (url.indexOf('/') + 1) { 52 | anchor.href = url; 53 | url = anchor.hostname; 54 | } 55 | 56 | var domain = url.slice(url.indexOf('.') + 1); 57 | var successful; 58 | 59 | for (var i = 0; i < protocolCount; i++) { 60 | for (var j = -1; j < subdomainCount; j++) { 61 | for (var k = 0; k < pathCount; k++) { 62 | favicon = 63 | protocols[i] + (j + 1 ? subdomains[j] + domain : url) + 64 | paths[k]; 65 | 66 | jQuery.get(favicon, function(data, status, xhr) { 67 | var type = xhr.getResponseHeader('Content-Type'); 68 | 69 | if (!successful && type && type.indexOf('image/') + 1 && data) { 70 | successful = true; 71 | callback(this); 72 | } 73 | }.bind(favicon)); 74 | } 75 | } 76 | } 77 | } 78 | }, 100); 79 | 80 | return this; 81 | }; 82 | 83 | var version = '1.3.1'; 84 | var protocols = ['http://']; 85 | var subdomains = ['', 'www.']; 86 | var paths = ['/favicon.ico']; 87 | var protocolCount = protocols.length; 88 | var subdomainCount = subdomains.length; 89 | var pathCount = paths.length; 90 | var anchor = document.createElement('a'); 91 | var undeclared = 'undefined'; 92 | 93 | if (typeof jQuery == undeclared) { 94 | var script = document.createElement('script'); 95 | script.setAttribute('type', 'text/javascript'); 96 | script.setAttribute('src', 'vendor/jquery/jquery.js'); 97 | script.onload = function() { jQuery.noConflict(); }; 98 | document.head.appendChild(script); 99 | } 100 | 101 | return this; 102 | } 103 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/sitename/data/tldpatch.json: -------------------------------------------------------------------------------- 1 | [ 2 | "com.ar", 3 | "edu.ar", 4 | "gob.ar", 5 | "gov.ar", 6 | "int.ar", 7 | "mil.ar", 8 | "net.ar", 9 | "org.ar", 10 | "tur.ar", 11 | "ac.bd", 12 | "com.bd", 13 | "edu.bd", 14 | "gov.bd", 15 | "mil.bd", 16 | "net.bd", 17 | "org.bd", 18 | "com.bn", 19 | "edu.bn", 20 | "gov.bn", 21 | "net.bn", 22 | "org.bn", 23 | "biz.ck", 24 | "co.ck", 25 | "edu.ck", 26 | "gen.ck", 27 | "gov.ck", 28 | "info.ck", 29 | "net.ck", 30 | "org.ck", 31 | "google.com", 32 | "yahoo.com", 33 | "ac.cy", 34 | "biz.cy", 35 | "com.cy", 36 | "ekloges.cy", 37 | "gov.cy", 38 | "ltd.cy", 39 | "name.cy", 40 | "net.cy", 41 | "org.cy", 42 | "parliament.cy", 43 | "press.cy", 44 | "pro.cy", 45 | "tm.cy", 46 | "com.er", 47 | "edu.er", 48 | "gov.er", 49 | "ind.er", 50 | "mil.er", 51 | "net.er", 52 | "org.er", 53 | "biz.et", 54 | "com.et", 55 | "edu.et", 56 | "gov.et", 57 | "info.et", 58 | "name.et", 59 | "net.et", 60 | "org.et", 61 | "ac.fj", 62 | "biz.fj", 63 | "com.fj", 64 | "info.fj", 65 | "mil.fj", 66 | "name.fj", 67 | "net.fj", 68 | "org.fj", 69 | "pro.fj", 70 | "ac.fk", 71 | "co.fk", 72 | "gov.fk", 73 | "net.fk", 74 | "nom.fk", 75 | "org.fk", 76 | "com.gt", 77 | "edu.gt", 78 | "gob.gt", 79 | "ind.gt", 80 | "mil.gt", 81 | "net.gt", 82 | "org.gt", 83 | "com.gu", 84 | "edu.gu", 85 | "gov.gu", 86 | "net.gu", 87 | "org.gu", 88 | "ac.il", 89 | "co.il", 90 | "gov.il", 91 | "idf.il", 92 | "k12.il", 93 | "muni.il", 94 | "net.il", 95 | "org.il", 96 | "com.jm", 97 | "edu.jm", 98 | "gov.jm", 99 | "mil.jm", 100 | "net.jm", 101 | "org.jm", 102 | "ac.ke", 103 | "co.ke", 104 | "go.ke", 105 | "info.ke", 106 | "me.ke", 107 | "mobi.ke", 108 | "ne.ke", 109 | "or.ke", 110 | "sc.ke", 111 | "com.kh", 112 | "edu.kh", 113 | "gov.kh", 114 | "mil.kh", 115 | "net.kh", 116 | "org.kh", 117 | "per.kh", 118 | "com.kw", 119 | "edu.kw", 120 | "gov.kw", 121 | "net.kw", 122 | "org.kw", 123 | "com.mm", 124 | "edu.mm", 125 | "gov.mm", 126 | "net.mm", 127 | "org.mm", 128 | "com.mt", 129 | "edu.mt", 130 | "gov.mt", 131 | "net.mt", 132 | "org.mt", 133 | "ac.mz", 134 | "adv.mz", 135 | "co.mz", 136 | "edu.mz", 137 | "gov.mz", 138 | "org.mz", 139 | "ac.ni", 140 | "co.ni", 141 | "gob.ni", 142 | "mil.ni", 143 | "net.ni", 144 | "nom.ni", 145 | "org.ni", 146 | "com.np", 147 | "edu.np", 148 | "gov.np", 149 | "mil.np", 150 | "name.np", 151 | "net.np", 152 | "org.np", 153 | "ac.nz", 154 | "co.nz", 155 | "cri.nz", 156 | "geek.nz", 157 | "gen.nz", 158 | "govt.nz", 159 | "health.nz", 160 | "iwi.nz", 161 | "maori.nz", 162 | "mil.nz", 163 | "net.nz", 164 | "org.nz", 165 | "parliament.nz", 166 | "school.nz", 167 | "ac.om", 168 | "biz.om", 169 | "co.om", 170 | "com.om", 171 | "edu.om", 172 | "gov.om", 173 | "med.om", 174 | "mil.om", 175 | "museum.om", 176 | "net.om", 177 | "org.om", 178 | "pro.om", 179 | "sch.om", 180 | "ac.pg", 181 | "com.pg", 182 | "gov.pg", 183 | "mil.pg", 184 | "net.pg", 185 | "org.pg", 186 | "com.py", 187 | "coop.py", 188 | "edu.py", 189 | "gov.py", 190 | "mil.py", 191 | "net.py", 192 | "org.py", 193 | "com.sv", 194 | "edu.sv", 195 | "gob.sv", 196 | "org.sv", 197 | "red.sv", 198 | "av.tr", 199 | "bbs.tr", 200 | "bel.tr", 201 | "biz.tr", 202 | "com.tr", 203 | "dr.tr", 204 | "edu.tr", 205 | "gen.tr", 206 | "gov.tr", 207 | "info.tr", 208 | "k12.tr", 209 | "name.tr", 210 | "nc.tr", 211 | "net.tr", 212 | "org.tr", 213 | "pol.tr", 214 | "tel.tr", 215 | "tsk.tr", 216 | "tv.tr", 217 | "web.tr", 218 | "ac.uk", 219 | "bl.uk", 220 | "british-library.uk", 221 | "co.uk", 222 | "gov.uk", 223 | "jet.uk", 224 | "judiciary.uk", 225 | "ltd.uk", 226 | "me.uk", 227 | "mod.uk", 228 | "net.uk", 229 | "nhs.uk", 230 | "nic.uk", 231 | "nls.uk", 232 | "org.uk", 233 | "parliament.uk", 234 | "plc.uk", 235 | "police.uk", 236 | "sch.uk", 237 | "com.uy", 238 | "edu.uy", 239 | "gub.uy", 240 | "mil.uy", 241 | "net.uy", 242 | "org.uy", 243 | "co.ve", 244 | "com.ve", 245 | "edu.ve", 246 | "gob.ve", 247 | "info.ve", 248 | "mil.ve", 249 | "net.ve", 250 | "org.ve", 251 | "tec.ve", 252 | "web.ve", 253 | "co.ye", 254 | "com.ye", 255 | "gov.ye", 256 | "ltd.ye", 257 | "me.ye", 258 | "net.ye", 259 | "org.ye", 260 | "plc.ye", 261 | "ac.za", 262 | "agric.za", 263 | "city.za", 264 | "co.za", 265 | "cybernet.za", 266 | "edu.za", 267 | "gov.za", 268 | "grondar.za", 269 | "iaccess.za", 270 | "inca.za", 271 | "law.za", 272 | "mil.za", 273 | "nis.za", 274 | "nom.za", 275 | "olivetti.za", 276 | "org.za", 277 | "pix.za", 278 | "school.za", 279 | "ecape.school.za", 280 | "fs.school.za", 281 | "gp.school.za", 282 | "kzn.school.za", 283 | "lp.school.za", 284 | "mpm.school.za", 285 | "ncape.school.za", 286 | "nw.school.za", 287 | "wcape.school.za", 288 | "ac.zm", 289 | "co.zm", 290 | "com.zm", 291 | "edu.zm", 292 | "gov.zm", 293 | "net.zm", 294 | "org.zm", 295 | "sch.zm", 296 | "ac.zw", 297 | "co.zw", 298 | "org.zw" 299 | ] 300 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/sitename/sitename.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class for determining a website’s canonical domain name 3 | * (disconnect.me, abc.net.au, even 4 | * byoogle.appspot.com). 5 | *
6 | *
7 | * Copyright 2012, 2013 Disconnect, Inc. 8 | *
9 | *
10 | * This Source Code Form is subject to the terms of the Mozilla Public License, 11 | * v. 2.0. If a copy of the MPL was not distributed with this file, You can 12 | * obtain one at https://mozilla.org/MPL/2.0/. 14 | *
15 | * @constructor 16 | * @author Brian Kennish 17 | */ 18 | function Sitename(tlds) { 19 | /** 20 | * Indicates whether the reference TLDs are loaded. 21 | * @return {boolean} True if the reference TLDs are loaded or false if not. 22 | */ 23 | this.isInitialized = function() { return initialized; }; 24 | 25 | /** 26 | * Dumps the reference TLDs. 27 | * @return {string} The serialized reference TLDs. 28 | */ 29 | this.getTlds = function() { return JSON.stringify(tlds); }; 30 | 31 | /** 32 | * Determines a canonical domain name. 33 | * @param {string} url A website’s absolute URL. 34 | * @return {string} A domain name or IP address. 35 | */ 36 | this.get = function(url) { 37 | anchor.href = url; 38 | var domain = anchor.hostname; 39 | var labels = domain.split('.'); 40 | var labelCount = labels.length - 1; 41 | 42 | // IP addresses shouldn’t be munged. 43 | if (isNaN(parseFloat(labels[labelCount]))) { 44 | domain = labels.slice(-2).join('.'); 45 | for (var i = labelCount; i > 1; i--) 46 | if (tlds[labels.slice(-i).join('.')]) 47 | domain = labels.slice(-i - 1).join('.'); 48 | } 49 | 50 | return domain; 51 | }; 52 | 53 | var version = '1.5.0'; 54 | var tldList = 'https://publicsuffix.org/list/effective_tld_names.dat'; 55 | var initialized = false; 56 | var anchor = document.createElement('a'); 57 | var reload = !tlds; 58 | var tlds = tlds || localStorage.tlds; 59 | 60 | function parseTldList(data) { 61 | data = data.split('\n'); 62 | var lineCount = data.length; 63 | initialized = false; 64 | tlds = altTlds; 65 | 66 | for (var i = 0; i < lineCount; i++) { 67 | var line = $.trim(data[i]); 68 | 69 | if (line && line.slice(0, 2) != '//') { 70 | // Fancy syntax is fancy. 71 | var prefix = line.charAt(0); 72 | if (prefix == '*' || prefix == '!') line = line.slice(1); 73 | 74 | if (line.charAt(0) == '.') line = line.slice(1); 75 | tlds[line] = true; 76 | } 77 | } 78 | 79 | var tldCount = tldPatch.length; 80 | for (var i = 0; i < tldCount; i++) tlds[tldPatch[i]] = true; 81 | initialized = true; 82 | localStorage.tlds = JSON.stringify(tlds); 83 | } 84 | 85 | if (tlds) { 86 | tlds = JSON.parse(tlds); 87 | initialized = true; 88 | } else tlds = {}; 89 | 90 | reload && $.get(tldList, function(data) { 91 | if (data) { 92 | parseTldList(data); 93 | } 94 | }); 95 | 96 | return this; 97 | } 98 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/scripts/vendor/sitename/tldpatch.js: -------------------------------------------------------------------------------- 1 | var tldPatch = [ 2 | "com.ar", 3 | "edu.ar", 4 | "gob.ar", 5 | "gov.ar", 6 | "int.ar", 7 | "mil.ar", 8 | "net.ar", 9 | "org.ar", 10 | "tur.ar", 11 | "ac.bd", 12 | "com.bd", 13 | "edu.bd", 14 | "gov.bd", 15 | "mil.bd", 16 | "net.bd", 17 | "org.bd", 18 | "com.bn", 19 | "edu.bn", 20 | "gov.bn", 21 | "net.bn", 22 | "org.bn", 23 | "biz.ck", 24 | "co.ck", 25 | "edu.ck", 26 | "gen.ck", 27 | "gov.ck", 28 | "info.ck", 29 | "net.ck", 30 | "org.ck", 31 | "google.com", 32 | "yahoo.com", 33 | "ac.cy", 34 | "biz.cy", 35 | "com.cy", 36 | "ekloges.cy", 37 | "gov.cy", 38 | "ltd.cy", 39 | "name.cy", 40 | "net.cy", 41 | "org.cy", 42 | "parliament.cy", 43 | "press.cy", 44 | "pro.cy", 45 | "tm.cy", 46 | "com.er", 47 | "edu.er", 48 | "gov.er", 49 | "ind.er", 50 | "mil.er", 51 | "net.er", 52 | "org.er", 53 | "biz.et", 54 | "com.et", 55 | "edu.et", 56 | "gov.et", 57 | "info.et", 58 | "name.et", 59 | "net.et", 60 | "org.et", 61 | "ac.fj", 62 | "biz.fj", 63 | "com.fj", 64 | "info.fj", 65 | "mil.fj", 66 | "name.fj", 67 | "net.fj", 68 | "org.fj", 69 | "pro.fj", 70 | "ac.fk", 71 | "co.fk", 72 | "gov.fk", 73 | "net.fk", 74 | "nom.fk", 75 | "org.fk", 76 | "com.gt", 77 | "edu.gt", 78 | "gob.gt", 79 | "ind.gt", 80 | "mil.gt", 81 | "net.gt", 82 | "org.gt", 83 | "com.gu", 84 | "edu.gu", 85 | "gov.gu", 86 | "net.gu", 87 | "org.gu", 88 | "ac.il", 89 | "co.il", 90 | "gov.il", 91 | "idf.il", 92 | "k12.il", 93 | "muni.il", 94 | "net.il", 95 | "org.il", 96 | "com.jm", 97 | "edu.jm", 98 | "gov.jm", 99 | "mil.jm", 100 | "net.jm", 101 | "org.jm", 102 | "ac.ke", 103 | "co.ke", 104 | "go.ke", 105 | "info.ke", 106 | "me.ke", 107 | "mobi.ke", 108 | "ne.ke", 109 | "or.ke", 110 | "sc.ke", 111 | "com.kh", 112 | "edu.kh", 113 | "gov.kh", 114 | "mil.kh", 115 | "net.kh", 116 | "org.kh", 117 | "per.kh", 118 | "com.kw", 119 | "edu.kw", 120 | "gov.kw", 121 | "net.kw", 122 | "org.kw", 123 | "com.mm", 124 | "edu.mm", 125 | "gov.mm", 126 | "net.mm", 127 | "org.mm", 128 | "com.mt", 129 | "edu.mt", 130 | "gov.mt", 131 | "net.mt", 132 | "org.mt", 133 | "ac.mz", 134 | "adv.mz", 135 | "co.mz", 136 | "edu.mz", 137 | "gov.mz", 138 | "org.mz", 139 | "ac.ni", 140 | "co.ni", 141 | "gob.ni", 142 | "mil.ni", 143 | "net.ni", 144 | "nom.ni", 145 | "org.ni", 146 | "com.np", 147 | "edu.np", 148 | "gov.np", 149 | "mil.np", 150 | "name.np", 151 | "net.np", 152 | "org.np", 153 | "ac.nz", 154 | "co.nz", 155 | "cri.nz", 156 | "geek.nz", 157 | "gen.nz", 158 | "govt.nz", 159 | "health.nz", 160 | "iwi.nz", 161 | "maori.nz", 162 | "mil.nz", 163 | "net.nz", 164 | "org.nz", 165 | "parliament.nz", 166 | "school.nz", 167 | "ac.om", 168 | "biz.om", 169 | "co.om", 170 | "com.om", 171 | "edu.om", 172 | "gov.om", 173 | "med.om", 174 | "mil.om", 175 | "museum.om", 176 | "net.om", 177 | "org.om", 178 | "pro.om", 179 | "sch.om", 180 | "ac.pg", 181 | "com.pg", 182 | "gov.pg", 183 | "mil.pg", 184 | "net.pg", 185 | "org.pg", 186 | "com.py", 187 | "coop.py", 188 | "edu.py", 189 | "gov.py", 190 | "mil.py", 191 | "net.py", 192 | "org.py", 193 | "com.sv", 194 | "edu.sv", 195 | "gob.sv", 196 | "org.sv", 197 | "red.sv", 198 | "av.tr", 199 | "bbs.tr", 200 | "bel.tr", 201 | "biz.tr", 202 | "com.tr", 203 | "dr.tr", 204 | "edu.tr", 205 | "gen.tr", 206 | "gov.tr", 207 | "info.tr", 208 | "k12.tr", 209 | "name.tr", 210 | "nc.tr", 211 | "net.tr", 212 | "org.tr", 213 | "pol.tr", 214 | "tel.tr", 215 | "tsk.tr", 216 | "tv.tr", 217 | "web.tr", 218 | "ac.uk", 219 | "bl.uk", 220 | "british-library.uk", 221 | "co.uk", 222 | "gov.uk", 223 | "jet.uk", 224 | "judiciary.uk", 225 | "ltd.uk", 226 | "me.uk", 227 | "mod.uk", 228 | "net.uk", 229 | "nhs.uk", 230 | "nic.uk", 231 | "nls.uk", 232 | "org.uk", 233 | "parliament.uk", 234 | "plc.uk", 235 | "police.uk", 236 | "sch.uk", 237 | "com.uy", 238 | "edu.uy", 239 | "gub.uy", 240 | "mil.uy", 241 | "net.uy", 242 | "org.uy", 243 | "co.ve", 244 | "com.ve", 245 | "edu.ve", 246 | "gob.ve", 247 | "info.ve", 248 | "mil.ve", 249 | "net.ve", 250 | "org.ve", 251 | "tec.ve", 252 | "web.ve", 253 | "co.ye", 254 | "com.ye", 255 | "gov.ye", 256 | "ltd.ye", 257 | "me.ye", 258 | "net.ye", 259 | "org.ye", 260 | "plc.ye", 261 | "ac.za", 262 | "agric.za", 263 | "city.za", 264 | "co.za", 265 | "cybernet.za", 266 | "edu.za", 267 | "gov.za", 268 | "grondar.za", 269 | "iaccess.za", 270 | "inca.za", 271 | "law.za", 272 | "mil.za", 273 | "nis.za", 274 | "nom.za", 275 | "olivetti.za", 276 | "org.za", 277 | "pix.za", 278 | "school.za", 279 | "ecape.school.za", 280 | "fs.school.za", 281 | "gp.school.za", 282 | "kzn.school.za", 283 | "lp.school.za", 284 | "mpm.school.za", 285 | "ncape.school.za", 286 | "nw.school.za", 287 | "wcape.school.za", 288 | "ac.zm", 289 | "co.zm", 290 | "com.zm", 291 | "edu.zm", 292 | "gov.zm", 293 | "net.zm", 294 | "org.zm", 295 | "sch.zm", 296 | "ac.zw", 297 | "co.zw", 298 | "org.zw" 299 | ]; 300 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/stylesheets/chrollusion/index.css: -------------------------------------------------------------------------------- 1 | 2 | g.node.unrelated-domain image { 3 | display: none; 4 | } 5 | 6 | g.node.unrelated-domain circle.glow { 7 | display: none; 8 | } 9 | 10 | g.node.unrelated-domain circle.visited { 11 | stroke: #bfffff; 12 | } 13 | 14 | g.node.unrelated-domain circle.site { 15 | stroke: #dfdfdf; 16 | } 17 | 18 | g.node.unrelated-domain .tracker { 19 | stroke: #efdfaf; 20 | } 21 | 22 | g.node.unrelated-domain circle.round-border { 23 | fill: #eaeaea; 24 | } 25 | 26 | .round-border { 27 | fill: #fff; 28 | stroke-width: 2px; 29 | } 30 | 31 | marker { 32 | stroke: none; 33 | fill: #000; 34 | fill-opacity: 1; 35 | } 36 | 37 | line.link { 38 | stroke: #999; 39 | stroke-opacity: .6; 40 | } 41 | 42 | line.bold { 43 | stroke: #000; 44 | stroke-opacity: 1; 45 | } 46 | 47 | .hidden { 48 | display: none; 49 | } 50 | 51 | #graph { 52 | font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica, Arial, sans-serif; 53 | font-size: 8pt; 54 | padding: 0; 55 | background-color: white; 56 | color: #666666; 57 | } 58 | 59 | #graph.safari { 60 | margin: 0; 61 | } 62 | 63 | #graph a { 64 | outline: none; 65 | color: black; 66 | } 67 | 68 | #page { 69 | position: relative; 70 | width: 706px; 71 | } 72 | 73 | #sidebar { 74 | position: absolute; 75 | top: 10px; 76 | left: 0px; 77 | width: 200px; 78 | padding-left: 15px; 79 | padding-bottom: 15px; 80 | pointer-events: none; 81 | } 82 | 83 | #chart { 84 | position: absolute; 85 | left: 216px; 86 | } 87 | 88 | #chart.fullscreen { 89 | left: 0; 90 | } 91 | 92 | #chart.safari.fullscreen { 93 | left: 4px; 94 | } 95 | 96 | #chart svg { 97 | margin: 3px; 98 | } 99 | 100 | #sidebar a, .info a, span.next { 101 | pointer-events: auto; 102 | } 103 | 104 | hr { border-width: 1px 0 0 } 105 | 106 | blockquote { 107 | margin-left: 10px; 108 | font-style: italic; 109 | } 110 | 111 | h1 { 112 | margin: 0; 113 | } 114 | 115 | h2.domain img.favicon { 116 | width: 16px; 117 | height: 16px; 118 | padding-right: 4px; 119 | vertical-align: middle; 120 | } 121 | 122 | h2.domain img.tracker { 123 | height: 30px; 124 | } 125 | 126 | .attribution { 127 | margin-left: 20px; 128 | } 129 | 130 | .tracker { 131 | stroke: #d62728; 132 | } 133 | 134 | .site { 135 | stroke: #7f7f7f; 136 | } 137 | 138 | .visited { 139 | stroke: #3388ff; 140 | } 141 | 142 | .demo span.next { 143 | cursor: pointer; 144 | font-weight: bold; 145 | } 146 | 147 | .demo span.next:hover, #graph a:hover { 148 | margin-right: -1px; 149 | margin-left: -1px; 150 | background: yellow; 151 | padding-right: 1px; 152 | padding-left: 1px; 153 | color: black; 154 | } 155 | 156 | #sidebar-content { 157 | background-color: rgba(0, 0, 0, 0.1); 158 | padding: 5px; 159 | margin-top: 15px; 160 | border-radius: 5px; 161 | } 162 | 163 | #sidebar-content p:first-child, #sidebar-content h2 { 164 | margin-top: 0; 165 | font-size: 8pt; 166 | } 167 | 168 | #sidebar-content #domain-infos .info a.visited { 169 | color: #3388ff; 170 | } 171 | 172 | #sidebar-content #domain-infos .info a.tracker { 173 | color: #d62728; 174 | } 175 | 176 | #sidebar-content #domain-infos .info a.tracker.blocked { 177 | text-decoration: line-through; 178 | } 179 | 180 | #disable-wifi { 181 | display: none; 182 | } 183 | 184 | ul { 185 | padding-left: 20px; 186 | } 187 | 188 | #addon-installation-detected { 189 | position: fixed; 190 | top: 0px; 191 | left: 0px; 192 | background-color: green; 193 | padding: 5px; 194 | color: white; 195 | width: 100%; 196 | text-align: center; 197 | } 198 | 199 | div.settings-menu { 200 | padding: 5px; 201 | pointer-events: auto; 202 | } 203 | 204 | div.settings-menu > ul { 205 | list-style-type: none; 206 | margin: 0px; 207 | padding: 0px; 208 | font-size: 8pt; 209 | } 210 | 211 | div.settings-menu > ul > li, div.settings-menu.collapsed { 212 | cursor: pointer; 213 | padding: 5px; 214 | margin-top: 5px; 215 | border-radius: 3px; 216 | background: rgba(0, 0, 0, 0.75); 217 | color: white; 218 | } 219 | 220 | div.settings-menu > ul > li.invisible:hover { 221 | background: rgba(0, 0, 0, 0.75); 222 | color: white; 223 | } 224 | 225 | div.settings-menu > ul > li:first-child { 226 | margin-top: 0px; 227 | } 228 | 229 | div.settings-menu > ul > li.invisible, 230 | div.settings-menu > ul > li:hover, 231 | div.settings-menu.collapsed:hover { 232 | background: white; 233 | color: black; 234 | } 235 | 236 | div.settings-menu.collapsed { 237 | position: absolute; 238 | top: 10px; 239 | border: 1px solid white; 240 | text-align: center; 241 | } 242 | 243 | #show-sidebar { 244 | display: none; 245 | left: 15px; 246 | width: 10px; 247 | } 248 | 249 | #show-sidebar:hover { 250 | border-color: black; 251 | } 252 | 253 | #show-list { 254 | right: 15px; 255 | border-color: white; 256 | background: #009548; 257 | width: 170px; 258 | color: white; 259 | } 260 | 261 | #show-list:hover { 262 | border-color: #009548; 263 | background: white; 264 | color: #009548; 265 | } 266 | 267 | #deployment-info { 268 | position: fixed; 269 | bottom: 0px; 270 | right: 0px; 271 | background: rgba(0, 0, 0, 0.5); 272 | color: white; 273 | padding: 10px; 274 | } 275 | 276 | html.deployment-production #deployment-info { 277 | display: none; 278 | } 279 | 280 | .notification { 281 | margin-bottom: 4px; 282 | border: 1px solid #fc0; 283 | border-radius: 5px; 284 | background: -webkit-linear-gradient(white, #fe8); 285 | padding: 10px; 286 | width: 772px; 287 | } 288 | 289 | #update.safari { 290 | margin-left: 4px; 291 | width: 769px; 292 | } 293 | 294 | #update .chrome, #update .safari { 295 | display: none; 296 | } 297 | 298 | #recommends { 299 | border: 1px solid #c5d5dd; 300 | background: -webkit-linear-gradient(white, #e6f1f6); 301 | } 302 | 303 | .share { 304 | display: inline-block; 305 | margin-top: 455px; 306 | background: url(../images/chrollusion/share.png); 307 | width: 200px; 308 | height: 60px; 309 | cursor: pointer; 310 | } 311 | 312 | #js-share-tweet { 313 | margin-left: 20px; 314 | background-position: 0 60px; 315 | } 316 | 317 | .close { 318 | display: inline-block; 319 | vertical-align: text-top; 320 | background: url(../images/chrollusion/close.png); 321 | width: 12px; 322 | height: 12px; 323 | cursor: pointer; 324 | } 325 | 326 | .close:hover { 327 | background: url(../images/chrollusion/close-hover.png); 328 | } 329 | 330 | .dashlane { 331 | vertical-align: text-top; 332 | width: 16px; 333 | height: 16px; 334 | } 335 | 336 | #social_share { 337 | position: absolute; 338 | top: -10000px; 339 | left: -10000px; 340 | width: 300px; 341 | height: 300px; 342 | z-index: 999; 343 | } 344 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/stylesheets/content.css: -------------------------------------------------------------------------------- 1 | /* 2 | A content style sheet that formats blocked elements. 3 | 4 | Copyright 2011, 2012 Brian Kennish 5 | 6 | Licensed under the Apache License, Version 2.0 (the "License"); you may not 7 | use this file except in compliance with the License. You may obtain a copy of 8 | the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 14 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 15 | License for the specific language governing permissions and limitations under 16 | the License. 17 | 18 | Brian Kennish 19 | */ 20 | .disconnect-highlighted { 21 | position: absolute !important; 22 | border: thin solid #6d85b3 !important; 23 | background: #b6c2d9 !important; 24 | cursor: pointer !important 25 | } 26 | 27 | .disconnect-collapsed { display: none !important } 28 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/stylesheets/legacy.css: -------------------------------------------------------------------------------- 1 | /* 2 | The style sheet for a popup that displays and drives the blocking of requests. 3 | 4 | Copyright 2010-2013 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | #legacy, #legacy .services td { text-align: center } 23 | 24 | #legacy, #minioptions { font-size: x-small } 25 | 26 | #legacy { 27 | margin: 3px; 28 | width: 140px 29 | } 30 | 31 | #legacy table { 32 | margin-left: auto; 33 | margin-right: auto; 34 | border-collapse: collapse 35 | } 36 | 37 | #legacy input, #legacy :link, #legacy :visited { outline: none } 38 | 39 | #legacy :link, #legacy :visited { 40 | text-decoration: none; 41 | color: #003ea8 42 | } 43 | 44 | #legacy :hover { text-decoration: underline } 45 | 46 | #legacy .deactivated { color: #7f7f7f } 47 | 48 | #legacy .mouseover { background: #f4f6fc } 49 | 50 | #legacy .services { 51 | margin-bottom: 3px; 52 | background: white; 53 | font-size: small 54 | } 55 | 56 | #legacy .services tr { 57 | border: solid #edeff5; 58 | border-width: thin 0; 59 | cursor: pointer 60 | } 61 | 62 | #legacy .services tr:first-child, #legacy .search, #upgrade { display: none } 63 | 64 | #legacy .services td { padding: 3px 0 3px 6px } 65 | 66 | #legacy .services td:last-child { 67 | padding-right: 6px; 68 | width: 100% 69 | } 70 | 71 | #legacy .shown.search { display: table-row } 72 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/stylesheets/vendor/hint/LICENSE-MIT.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Kushagra Gour 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/chrome/stylesheets/vendor/hint/hint.css: -------------------------------------------------------------------------------- 1 | /*! Hint.css - v1.3.0 - 2013-08-05 2 | * http://kushagragour.in/lab/hint/ 3 | * Copyright (c) 2013 Kushagra Gour; Licensed MIT */ 4 | 5 | .hint,[data-hint]{position:relative;display:inline-block}.hint:before,.hint:after,[data-hint]:before,[data-hint]:after{position:absolute;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease}.hint:hover:before,.hint:hover:after,.hint:focus:before,.hint:focus:after,[data-hint]:hover:before,[data-hint]:hover:after,[data-hint]:focus:before,[data-hint]:focus:after{visibility:visible;opacity:1}.hint:before,[data-hint]:before{content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1000001}.hint:after,[data-hint]:after{content:attr(data-hint);background:#383838;color:#fff;text-shadow:0 -1px 0 #000;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:4px 4px 8px rgba(0,0,0,.3)}.hint--top:before{border-top-color:#383838}.hint--bottom:before{border-bottom-color:#383838}.hint--left:before{border-left-color:#383838}.hint--right:before{border-right-color:#383838}.hint--top:before{margin-bottom:-12px}.hint--top:after{margin-left:-18px}.hint--top:before,.hint--top:after{bottom:100%;left:50%}.hint--top:hover:after,.hint--top:hover:before,.hint--top:focus:after,.hint--top:focus:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom:before{margin-top:-12px}.hint--bottom:after{margin-left:-18px}.hint--bottom:before,.hint--bottom:after{top:100%;left:50%}.hint--bottom:hover:after,.hint--bottom:hover:before,.hint--bottom:focus:after,.hint--bottom:focus:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--right:before{margin-left:-12px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:before,.hint--right:after{left:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before,.hint--right:focus:after,.hint--right:focus:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--left:before{margin-right:-12px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:before,.hint--left:after{right:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before,.hint--left:focus:after,.hint--left:focus:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-left-color:#b34e4d}.hint--error.hint--right:before{border-right-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-left-color:#c09854}.hint--warning.hint--right:before{border-right-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #193b4d}.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-left-color:#3986ac}.hint--info.hint--right:before{border-right-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-left-color:#458746}.hint--success.hint--right:before{border-right-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:after,.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:after,.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--rounded:after{border-radius:4px}.hint--bounce:before,.hint--bounce:after{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(0.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(0.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(0.71,1.7,.77,1.24)} -------------------------------------------------------------------------------- /firefox/content/disconnect.safariextension/opera/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Disconnect", 4 | "version": "5.19.2", 5 | "description": "Make the web faster, more private, and more secure.", 6 | "icons": {"48": "chrome/images/48.png", "128": "chrome/images/128.png"}, 7 | "permissions": [ 8 | "cookies", 9 | "tabs", 10 | "unlimitedStorage", 11 | "webNavigation", 12 | "webRequest", 13 | "webRequestBlocking", 14 | "http://*/*", 15 | "https://*/*" 16 | ], 17 | "web_accessible_resources": [], 18 | "background": { 19 | "scripts": [ 20 | "chrome/scripts/vendor/moment/moment.js", 21 | "chrome/scripts/vendor/jquery/jquery.js", 22 | "chrome/scripts/vendor/sitename/alttlds.js", 23 | "chrome/scripts/vendor/sitename/tldpatch.js", 24 | "chrome/scripts/vendor/sitename/sitename.js", 25 | "chrome/scripts/services.js", 26 | "chrome/scripts/background.js" 27 | ] 28 | }, 29 | "browser_action": {"default_title": "View and manage requests"}, 30 | "content_scripts": [{ 31 | "matches": ["http://*/*", "https://*/*"], 32 | "css": ["chrome/stylesheets/content.css"], 33 | "js": [ 34 | "chrome/scripts/vendor/jquery/jquery.js", 35 | "chrome/scripts/vendor/sitename/alttlds.js", 36 | "chrome/scripts/vendor/sitename/tldpatch.js", 37 | "chrome/scripts/vendor/sitename/sitename.js", 38 | "chrome/scripts/content.js" 39 | ], 40 | "run_at": "document_start", 41 | "all_frames": true 42 | }] 43 | } 44 | -------------------------------------------------------------------------------- /firefox/content/hint.css: -------------------------------------------------------------------------------- 1 | /*! Hint.css - v1.3.0 - 2013-08-05 2 | * http://kushagragour.in/lab/hint/ 3 | * Copyright (c) 2013 Kushagra Gour; Licensed MIT 4 | * Namespace restrictions by Brian Kennish */ 5 | 6 | #disconnect-tooltips .hint,#disconnect-tooltips [data-hint]{position:relative;display:inline-block}#disconnect-tooltips .hint:before,#disconnect-tooltips .hint:after,#disconnect-tooltips [data-hint]:before,#disconnect-tooltips [data-hint]:after{position:absolute;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease}#disconnect-tooltips .hint:hover:before,#disconnect-tooltips .hint:hover:after,#disconnect-tooltips .hint:focus:before,#disconnect-tooltips .hint:focus:after,#disconnect-tooltips [data-hint]:hover:before,#disconnect-tooltips [data-hint]:hover:after,#disconnect-tooltips [data-hint]:focus:before,#disconnect-tooltips [data-hint]:focus:after{visibility:visible;opacity:1}#disconnect-tooltips .hint:before,#disconnect-tooltips [data-hint]:before{content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1000001}#disconnect-tooltips .hint:after,#disconnect-tooltips [data-hint]:after{content:attr(data-hint);background:#383838;color:#fff;text-shadow:0 -1px 0 #000;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:4px 4px 8px rgba(0,0,0,.3)}#disconnect-tooltips .hint--top:before{border-top-color:#383838}#disconnect-tooltips .hint--bottom:before{border-bottom-color:#383838}#disconnect-tooltips .hint--left:before{border-left-color:#383838}#disconnect-tooltips .hint--right:before{border-right-color:#383838}#disconnect-tooltips .hint--top:before{margin-bottom:-12px}#disconnect-tooltips .hint--top:after{margin-left:-18px}#disconnect-tooltips .hint--top:before,#disconnect-tooltips .hint--top:after{bottom:100%;left:50%}#disconnect-tooltips .hint--top:hover:after,#disconnect-tooltips .hint--top:hover:before,#disconnect-tooltips .hint--top:focus:after,#disconnect-tooltips .hint--top:focus:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}#disconnect-tooltips .hint--bottom:before{margin-top:-12px}#disconnect-tooltips .hint--bottom:after{margin-left:-18px}#disconnect-tooltips .hint--bottom:before,#disconnect-tooltips .hint--bottom:after{top:100%;left:50%}#disconnect-tooltips .hint--bottom:hover:after,#disconnect-tooltips .hint--bottom:hover:before,#disconnect-tooltips .hint--bottom:focus:after,#disconnect-tooltips .hint--bottom:focus:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}#disconnect-tooltips .hint--right:before{margin-left:-12px;margin-bottom:-6px}#disconnect-tooltips .hint--right:after{margin-bottom:-14px}#disconnect-tooltips .hint--right:before,#disconnect-tooltips .hint--right:after{left:100%;bottom:50%}#disconnect-tooltips .hint--right:hover:after,#disconnect-tooltips .hint--right:hover:before,#disconnect-tooltips .hint--right:focus:after,#disconnect-tooltips .hint--right:focus:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}#disconnect-tooltips .hint--left:before{margin-right:-12px;margin-bottom:-6px}#disconnect-tooltips .hint--left:after{margin-bottom:-14px}#disconnect-tooltips .hint--left:before,#disconnect-tooltips .hint--left:after{right:100%;bottom:50%}#disconnect-tooltips .hint--left:hover:after,#disconnect-tooltips .hint--left:hover:before,#disconnect-tooltips .hint--left:focus:after,#disconnect-tooltips .hint--left:focus:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}#disconnect-tooltips .hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}#disconnect-tooltips .hint--error.hint--top:before{border-top-color:#b34e4d}#disconnect-tooltips .hint--error.hint--bottom:before{border-bottom-color:#b34e4d}#disconnect-tooltips .hint--error.hint--left:before{border-left-color:#b34e4d}#disconnect-tooltips .hint--error.hint--right:before{border-right-color:#b34e4d}#disconnect-tooltips .hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}#disconnect-tooltips .hint--warning.hint--top:before{border-top-color:#c09854}#disconnect-tooltips .hint--warning.hint--bottom:before{border-bottom-color:#c09854}#disconnect-tooltips .hint--warning.hint--left:before{border-left-color:#c09854}#disconnect-tooltips .hint--warning.hint--right:before{border-right-color:#c09854}#disconnect-tooltips .hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #193b4d}#disconnect-tooltips .hint--info.hint--top:before{border-top-color:#3986ac}#disconnect-tooltips .hint--info.hint--bottom:before{border-bottom-color:#3986ac}#disconnect-tooltips .hint--info.hint--left:before{border-left-color:#3986ac}#disconnect-tooltips .hint--info.hint--right:before{border-right-color:#3986ac}#disconnect-tooltips .hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}#disconnect-tooltips .hint--success.hint--top:before{border-top-color:#458746}#disconnect-tooltips .hint--success.hint--bottom:before{border-bottom-color:#458746}#disconnect-tooltips .hint--success.hint--left:before{border-left-color:#458746}#disconnect-tooltips .hint--success.hint--right:before{border-right-color:#458746}#disconnect-tooltips .hint--always:after,#disconnect-tooltips .hint--always:before{opacity:1;visibility:visible}#disconnect-tooltips .hint--always.hint--top:after,#disconnect-tooltips .hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}#disconnect-tooltips .hint--always.hint--bottom:after,#disconnect-tooltips .hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}#disconnect-tooltips .hint--always.hint--left:after,#disconnect-tooltips .hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}#disconnect-tooltips .hint--always.hint--right:after,#disconnect-tooltips .hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}#disconnect-tooltips .hint--rounded:after{border-radius:4px}#disconnect-tooltips .hint--bounce:before,#disconnect-tooltips .hint--bounce:after{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(0.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(0.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(0.71,1.7,.77,1.24)} -------------------------------------------------------------------------------- /firefox/content/sitename.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class for determining a website’s canonical domain name 3 | * (disconnect.me, abc.net.au, even 4 | * byoogle.appspot.com). 5 | *
6 | *
7 | * Copyright 2012, 2013 Disconnect, Inc. 8 | *
9 | *
10 | * This Source Code Form is subject to the terms of the Mozilla Public License, 11 | * v. 2.0. If a copy of the MPL was not distributed with this file, You can 12 | * obtain one at https://mozilla.org/MPL/2.0/. 14 | *
15 | * @constructor 16 | * @author Brian Kennish 17 | */ 18 | function Sitename() { 19 | /** 20 | * Indicates whether the reference TLDs are loaded. 21 | * @return {boolean} True if the reference TLDs are loaded or false if not. 22 | */ 23 | this.isInitialized = function() { return initialized; }; 24 | 25 | /** 26 | * Determines a canonical domain name. 27 | * @param {string} host A website’s hostname. 28 | * @return {string} A domain name or IP address. 29 | */ 30 | this.get = function(host) { 31 | var domain = host; 32 | var labels = domain.split('.'); 33 | var labelCount = labels.length - 1; 34 | 35 | // IP addresses shouldn’t be munged. 36 | if (isNaN(parseFloat(labels[labelCount]))) { 37 | domain = labels.slice(-2).join('.'); 38 | for (var i = labelCount; i > 1; i--) 39 | if (tlds[labels.slice(-i).join('.')]) 40 | domain = labels.slice(-i - 1).join('.'); 41 | } 42 | 43 | return domain; 44 | }; 45 | 46 | var version = '1.4.0'; 47 | var tldList = 48 | 'https://publicsuffix.org/list/effective_tld_names.dat; 49 | var altTldList = 50 | 'chrome://disconnect/skin/scripts/vendor/sitename/data/effective_tld_names.dat'; 51 | var tldPatch = 52 | 'chrome://disconnect/skin/scripts/vendor/sitename/data/tldpatch.json'; 53 | var initialized = false; 54 | var tlds = '{}'; 55 | 56 | function parseTldList(data) { 57 | data = data.split('\n'); 58 | var lineCount = data.length; 59 | initialized = false; 60 | tlds = {}; 61 | 62 | for (var i = 0; i < lineCount; i++) { 63 | var line = data[i].trim(); 64 | 65 | if (line && line.slice(0, 2) != '//') { 66 | // Fancy syntax is fancy. 67 | var prefix = line.charAt(0); 68 | if (prefix == '*' || prefix == '!') line = line.slice(1); 69 | 70 | if (line.charAt(0) == '.') line = line.slice(1); 71 | tlds[line] = true; 72 | } 73 | } 74 | 75 | xhr.open('GET', tldPatch); 76 | xhr.overrideMimeType('application/json'); 77 | 78 | xhr.onreadystatechange = function() { 79 | if (xhr.readyState == 4 && (xhr.status == 0 || xhr.status == 200)) { 80 | var data = JSON.parse(xhr.responseText); 81 | var tldCount = data.length; 82 | for (var i = 0; i < tldCount; i++) tlds[data[i]] = true; 83 | initialized = true; 84 | } 85 | }; 86 | 87 | xhr.send(); 88 | } 89 | 90 | if (tlds) { 91 | tlds = JSON.parse(tlds); 92 | initialized = true; 93 | } else tlds = {}; 94 | 95 | var xhr = 96 | new Components.Constructor('@mozilla.org/xmlextras/xmlhttprequest;1')(); 97 | xhr.open('GET', tldList); 98 | 99 | xhr.onreadystatechange = function() { 100 | if (xhr.readyState == 4) { 101 | if (xhr.status == 200) parseTldList(xhr.responseText); 102 | else { 103 | xhr.open('GET', altTldList); 104 | xhr.overrideMimeType('text/plain'); 105 | 106 | xhr.onreadystatechange = function() { 107 | xhr.readyState == 4 && (xhr.status == 0 || xhr.status == 200) && 108 | parseTldList(xhr.responseText); 109 | }; 110 | 111 | xhr.send(); 112 | } 113 | } 114 | }; 115 | 116 | xhr.send(); 117 | return this; 118 | } 119 | -------------------------------------------------------------------------------- /firefox/defaults/preferences/defaults.js: -------------------------------------------------------------------------------- 1 | /* 2 | A script that sets the default preferences. 3 | 4 | Copyright 2012, 2013 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | 23 | /** 24 | * The Disconnect preferences. 25 | */ 26 | pref('extensions.disconnect.build', 0); 27 | pref('extensions.disconnect.firstBuild', 0); 28 | pref( 29 | 'extensions.disconnect.whitelist', 30 | '{"latimes.com":{"Google":true},"mediafire.com":{"Facebook":true},"salon.com":{"Google":true},"udacity.com":{"Twitter":true}}' 31 | ); 32 | pref('extensions.disconnect.blacklist', '{}'); 33 | pref('extensions.disconnect.pwyw', '{}'); 34 | pref('extensions.disconnect.searchHardened', false); 35 | pref('extensions.disconnect.browsingHardened', true); 36 | pref('extensions.disconnect.blockingIndicated', true); 37 | pref('extensions.disconnect.blockedRequests', '{}'); 38 | pref('extensions.disconnect.hardenedRequests', '{}'); 39 | pref('extensions.disconnect.blockingIndicated', true); 40 | pref('extensions.disconnect.displayMode', 'list'); 41 | pref('extensions.disconnect.firstUpdateTime', '0'); 42 | pref('extensions.disconnect.firstUpdateThisWeekTime', '0'); 43 | pref('extensions.disconnect.firstUpdateThisMonthTime', '0'); 44 | pref('extensions.disconnect.lastUpdateTime', '0'); 45 | pref('extensions.disconnect.updateCount', 0); 46 | -------------------------------------------------------------------------------- /firefox/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disconnectme/disconnect/0482e3acef3ed67866406ac3fb6eeb60a313937a/firefox/icon.png -------------------------------------------------------------------------------- /firefox/install.rdf: -------------------------------------------------------------------------------- 1 | 2 | 23 | 27 | 28 | 2 29 | 2.0@disconnect.me 30 | Disconnect 31 | 3.14.0 32 | Disconnect 33 | Brian Kennish 34 | Dan Kwon 35 | 36 | Make the web faster, more private, and more secure. 37 | 38 | chrome://disconnect/skin/images/48.png 39 | chrome://disconnect/skin/images/64.png 40 | https://disconnect.me/ 41 | 42 | 43 | 44 | {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 45 | 1.5 46 | 31.* 47 | 48 | 49 | 50 | 51 | 52 | {a463f10c-3994-11da-9945-000d60ca027b} 53 | 0.7 54 | 2.6.2 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /firefox/modules/state.js: -------------------------------------------------------------------------------- 1 | /* 2 | A script that persists session data. 3 | 4 | Copyright 2012, 2013 Disconnect, Inc. 5 | 6 | This program is free software: you can redistribute it and/or modify it under 7 | the terms of the GNU General Public License as published by the Free Software 8 | Foundation, either version 3 of the License, or (at your option) any later 9 | version. 10 | 11 | This program is distributed in the hope that it will be useful, but WITHOUT 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program. If not, see . 17 | 18 | Authors (one per line): 19 | 20 | Brian Kennish 21 | */ 22 | var EXPORTED_SYMBOLS = ['requestCounts', 'dashboardCounts', 'log']; 23 | 24 | /** 25 | * Constants. 26 | */ 27 | var requestCounts = {}; 28 | var dashboardCounts = {}; 29 | var log = {}; 30 | --------------------------------------------------------------------------------