NonAd Block

This extension blocks any content that is NOT an ad.

什麼是NonAd Block?

NonAd Block是由okcarl開發的Chrome擴展程式,該擴展的主要功能是“This extension blocks any content that is NOT an ad.”。

擴展截圖

screenshot

下載NonAd Block擴展crx文件

下載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
官方網址 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"
        }
    ]
}