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 |
| 公式URL | 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"
}
} | |