Add Art
Replacing ads with art.
Add Art란 무엇입니까?
Add Art은(는) Add-Art에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replacing ads with art."입니다.
확장 프로그램 스크린샷
Add Art 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |