Add Art
Replacing ads with art.
What is Add Art?
Add Art is a Chrome extension developed by Add-Art, and its main feature is "Replacing ads with art.".
Extension Screenshots
Download Add Art Extension CRX File
Download Add Art 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
Replace web ads with visual essays by artists. Update 10/12/2016: Now you can disable add-art for specific sites!
Extension Basic Information
Name | |
ID | jplogjalofjlkendelkacpekloflkfeg |
Official URL | https://chrome.google.com/webstore/detail/add-art/jplogjalofjlkendelkacpekloflkfeg |
Description | Replacing ads with art. |
File Size | 439 KB |
Installation Count | 329 |
Current Version | 2.4.3 |
Last Updated | 2018-05-18 |
Publish Date | 2018-05-18 |
Rating | 3.42/5 Total 12 Ratings |
Developer | Add-Art |
Payment Type | free |
Extension Website | http://add-art.org |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Add Art", "description": "Replacing ads with art.", "author": "@owise1,Corey Tegeler", "version": "2.4.3", "homepage_url": "http:\/\/add-art.org\/", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "64": "images\/icon-64.png" }, "browser_action": { "default_icon": "images\/icon-64.png", "default_popup": "interface.html", "default_title": "Add Art!" }, "permissions": [ "storage", "tabs", "unlimitedStorage", "webNavigation", "notifications", "webRequest", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/jquery-3.2.1.min.js", "js\/lib\/q.js", "js\/lib\/ramda.min.js", "js\/artAdder.js", "js\/document_end.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "page": "background.html" } } |