Add Art
Replacing ads with art.
什麼是Add Art?
Add Art是由Add-Art開發的Chrome擴展程式,該擴展的主要功能是“Replacing ads with art.”。
擴展截圖
下載Add Art擴展crx文件
下載Add Art擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Replace web ads with visual essays by artists.
Update 10/12/2016: Now you can disable add-art for specific sites! 擴展基本資訊
| 名稱 | |
| ID | jplogjalofjlkendelkacpekloflkfeg |
| 官方網址 | https://chrome.google.com/webstore/detail/add-art/jplogjalofjlkendelkacpekloflkfeg |
| 簡介 | Replacing ads with art. |
| 檔案大小 | 439 KB |
| 安裝次數 | 329 |
| 目前版本 | 2.4.3 |
| 更新時間 | 2018-05-18 |
| 上架時間 | 2018-05-18 |
| 評分 | 3.42/5 共 12 次評分 |
| 開發者 | Add-Art |
| 付費類型 | free |
| 擴展官網 | http://add-art.org |
| 支援的語言 | 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"
}
} | |