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
官方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"
        }
    ]
}