NonAd Block

This extension blocks any content that is NOT an ad.

NonAd Block là gì?

NonAd Block là một tiện ích mở rộng Chrome được phát triển bởi okcarl, và tính năng chính của nó là "This extension blocks any content that is NOT an ad.".

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

screenshot

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

Tải xuống các tệp mở rộng NonAd Block 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

                        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.                    

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

Tên NonAd Block NonAd Block
ID mjdphmpknkepficogfmnfhabmlngggip
URL Chính Thức https://chromewebstore.google.com/detail/nonad-block/mjdphmpknkepficogfmnfhabmlngggip
Mô tả This extension blocks any content that is NOT an ad.
Kích Thước Tệp 58.6 KB
Số Lần Cài Đặt 890
Phiên Bản Hiện Tại 1.0.0.1
Cập Nhật Lần Cuối 2016-02-11
Ngày Phát Hành 2016-02-09
Đánh Giá 4.35/5 Tổng số 82 Đánh Giá
Nhà Phát Triển okcarl
Loại Thanh Toán free
Trang Web Mở Rộng http://www.stupidhackathon.com/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}