Add Art

Replacing ads with art.

Add Art là gì?

Add Art là một tiện ích mở rộng Chrome được phát triển bởi Add-Art, và tính năng chính của nó là "Replacing ads with art.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Add Art

Tải xuống các tệp mở rộng Add Art dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Replace web ads with visual essays by artists.

Update 10/12/2016: Now you can disable add-art for specific sites!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Add Art Add Art
ID jplogjalofjlkendelkacpekloflkfeg
URL Chính Thức https://chrome.google.com/webstore/detail/add-art/jplogjalofjlkendelkacpekloflkfeg
Mô tả Replacing ads with art.
Kích Thước Tệp 439 KB
Số Lần Cài Đặt 329
Phiên Bản Hiện Tại 2.4.3
Cập Nhật Lần Cuối 2018-05-18
Ngày Phát Hành 2018-05-18
Đánh Giá 3.42/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Add-Art
Loại Thanh Toán free
Trang Web Mở Rộng http://add-art.org
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}