Ad Minus
Dismiss ad overlays.
What is Ad Minus?
Ad Minus is a Chrome extension developed by ericlawrence, and its main feature is "Dismiss ad overlays.".
Extension Screenshots
Download Ad Minus Extension CRX File
Download Ad Minus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds an icon to the url bar on supported sites allowing you to dismiss certain ad overlays. More sites and the ability to add custom sites will be supported in the future. Right now it is only active on Omaha.com.
Extension Basic Information
Name | Ad Minus |
ID | iogaabojnbehlhfdigojaopppipmlmjm |
Official URL | https://chromewebstore.google.com/detail/ad-minus/iogaabojnbehlhfdigojaopppipmlmjm |
Description | Dismiss ad overlays. |
File Size | 42.32 KB |
Installation Count | 14 |
Current Version | 0.1 |
Last Updated | 2013-03-16 |
Publish Date | 2013-03-16 |
Developer | ericlawrence |
Payment Type | free |
Extension Website | https://github.com/squaretone/adminus |
Supported Languages | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ad Minus", "version": "0.1", "manifest_version": 2, "description": "Dismiss ad overlays.", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.omaha.com\/*" ], "js": [ "jquery-1.9.1.min.js", "content.js" ] } ], "page_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Remove ad overlay" }, "permissions": [ "tabs" ] } |