Add Art

Replacing ads with art.

Add Artคืออะไร?

Add Art เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Add-Art และคุณลักษณะหลักของมันคือ "Replacing ads with art."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add Art

ดาวน์โหลดไฟล์ส่วนขยาย 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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Add Art Add Art
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"
    }
}