Simple JavaScript Toggle

Enable or disable JavaScript on a site-by-site basis.

Simple JavaScript Toggle là gì?

Simple JavaScript Toggle là một tiện ích mở rộng Chrome được phát triển bởi https://squishythoughts.com, và tính năng chính của nó là "Enable or disable JavaScript on a site-by-site basis.".

Ả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 Simple JavaScript Toggle

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

                        Simple JavaScript Toggle adds a button which allows you to control if JavaScript should be allowed to run on the current site or not.

Chrome has built-in support for allowing you to configure which sites should be allowed to run JavaScript. You do this on the Chrome settings page, and it works really well for permanently blocking or allowing a site. If you find that you regularly need to change whether to allow or block JavaScript on a site, using the settings page gets impractical. That's where this extension comes in. By clicking on a button in the toolbar, JavaScript is either enabled or disabled for the current site whereupon the page is reloaded.                    

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

Tên Simple JavaScript Toggle Simple JavaScript Toggle
ID mhidlbegmoiddmebedbiijmpckambgfj
URL Chính Thức https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj
Mô tả Enable or disable JavaScript on a site-by-site basis.
Kích Thước Tệp 19.15 KB
Số Lần Cài Đặt 897
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-07-20
Ngày Phát Hành 2014-07-20
Đánh Giá 3.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://squishythoughts.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple JavaScript Toggle",
    "description": "Enable or disable JavaScript on a site-by-site basis.",
    "version": "1.0.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contentSettings"
    ],
    "browser_action": {
        "default_icon": "icon-off.png",
        "default_title": "Toggle JavaScript"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}