ScriptBlock

A smart extension that controls javascript, iframes, and plugins on Google Chrome.

ScriptBlock là gì?

ScriptBlock là một tiện ích mở rộng Chrome được phát triển bởi compvid30, và tính năng chính của nó là "A smart extension that controls javascript, iframes, and plugins on Google Chrome.".

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

screenshot
screenshot

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

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

                        Scriptblock is an extension that provides better control of javascript, iframes and other unwanted content.

It even can midigate cross-site-scripting(XXS) attacks and drive-by-downloads.

ScriptBlock works perfectly together with other extensions like AdBlock, AdBlock Plus or Ghostery.

You can add your trusted sites to a whitelist, so they will not be affected by ScriptBlock.

If you like this extension, please support me and click on the donate button or give me a good review in chrome web store. :)

For bug reports please go to: https://github.com/compvid30/scriptblock                    

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

Tên ScriptBlock ScriptBlock
ID hcdjknjpbnhdoabbngpmfekaecnpajba
URL Chính Thức https://chromewebstore.google.com/detail/scriptblock/hcdjknjpbnhdoabbngpmfekaecnpajba
Mô tả A smart extension that controls javascript, iframes, and plugins on Google Chrome.
Kích Thước Tệp 161 KB
Số Lần Cài Đặt 43,296
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2018-06-14
Ngày Phát Hành 2018-06-13
Đánh Giá 3.98/5 Tổng số 444 Đánh Giá
Nhà Phát Triển compvid30
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/compvid30/scriptblock
URL Trang Trợ Giúp https://github.com/compvid30/scriptblock
URL Trang Chính Sách Bảo Mật https://github.com/compvid30/scriptblock/wiki/Privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "common\/sjcl.js",
                "CHANGE__PASSWORD__HERE.js",
                "common\/common.js",
                "blockStart.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "blockAfter.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "A smart extension that controls javascript, iframes, and plugins on Google Chrome.",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "19": "img\/forbidden.png",
        "48": "img\/icon48.png"
    },
    "name": "ScriptBlock",
    "minimum_chrome_version": "18",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/disabled.png",
        "default_popup": "popup.html",
        "default_title": "ScriptBlock - click for more action"
    },
    "permissions": [
        "tabs"
    ],
    "version": "1.5"
}