NonAd Block

This extension blocks any content that is NOT an ad.

NonAd Blockคืออะไร?

NonAd Block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย okcarl และคุณลักษณะหลักของมันคือ "This extension blocks any content that is NOT an ad."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย NonAd Block ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This shows you the Internet the way content creators want you to see it: by blocking any content that is NOT an ad. It helps you focus on the important parts of webpages.

Created for the Stupid Sh*t No One Needs & Terrible Ideas Hackathon 2016.


New version improves performance and shows more ads.                    

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

ชื่อ NonAd Block NonAd Block
ID mjdphmpknkepficogfmnfhabmlngggip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nonad-block/mjdphmpknkepficogfmnfhabmlngggip
คำอธิบาย This extension blocks any content that is NOT an ad.
ขนาดไฟล์ 58.6 KB
จำนวนการติดตั้ง 890
เวอร์ชันปัจจุบัน 1.0.0.1
อัปเดตครั้งล่าสุด 2016-02-11
วันที่เผยแพร่ 2016-02-09
คะแนน 4.35/5 รวมทั้งหมด 82 คะแนน
ผู้พัฒนา okcarl
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.stupidhackathon.com/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NonAd Block",
    "short_name": "NonAdblock",
    "description": "This extension blocks any content that is NOT an ad.",
    "version": "1.0.0.1",
    "homepage_url": "http:\/\/www.stupidhackathon.com\/",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "jquery-1.12.0.min.js",
            "app.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.12.0.min.js",
                "app.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}