Disable JavaScript

Adds the ability to disable JavaScript on specific sites.

Disable JavaScriptคืออะไร?

Disable JavaScript เป็นส่วนขยายของ Chrome ที่พัฒนาโดย samirulhoque9362 และคุณลักษณะหลักของมันคือ "Adds the ability to disable JavaScript on specific sites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable JavaScript

ดาวน์โหลดไฟล์ส่วนขยาย Disable JavaScript ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        INTRODUCTION
This web extension lets an user decide if JavaScript should be enabled or disabled for a given host or a given tab.

FEATURES
- Set the default state (JS on or JS off)
- Set the disable behavior (By domain or by tab)
- Use shortcuts (you can also disable this)
- Use a context menu item for toggling (you can also disable this)
- See your blacklisted/whitelisted domain list
- Add domains manually before visiting a site
- Add base domains that automatically enable/disable JS for sub domains

USAGE
When accessing e.g. google.com and disabling JavaScript, the web extension will block all JavaScript which otherwise would be loaded by google.com (including inline JS and external JS files from other hosts).

Please note that scripts from the blacklisted host will still be loaded if they're being loaded in another host (unless you block that host as well of course).

SUPPORTED BROWSERS
- Mozilla Firefox (Desktop & Firefox for Android)
- Google Chrome (Desktop)

WHY TO USE THIS WEB EXTENSION
The code is completely open source, you can also use the unpacked version of this web extension if you prefer.
No data of you will ever be logged and the web extension asks only for the permissions it really needs.
Pull requests are welcome!

FUTURE PLANS
You can see existing and add new feature proposals on the projects GitHub page (you can find the link in the about page of the web extension).

SUPPORT
If you need any assistance or find any bugs, feel free to contact me directly via email or use the support form in the web extension's chrome web store page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Disable JavaScript Disable JavaScript
ID jfpdlihdedhlmhlbgooailmfhahieoem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/disable-javascript/jfpdlihdedhlmhlbgooailmfhahieoem
คำอธิบาย Adds the ability to disable JavaScript on specific sites.
ขนาดไฟล์ 87.57 KB
จำนวนการติดตั้ง 82,976
เวอร์ชันปัจจุบัน 2.3.1
อัปเดตครั้งล่าสุด 2018-09-27
วันที่เผยแพร่ 2018-09-27
คะแนน 4.50/5 รวมทั้งหมด 50 คะแนน
ผู้พัฒนา samirulhoque9362
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dpacassi/disable-javascript
URL หน้าช่วยเหลือ https://github.com/dpacassi/disable-javascript
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "David Pacassi Torrico",
    "manifest_version": 2,
    "name": "Disable JavaScript",
    "version": "2.3.1",
    "description": "Adds the ability to disable JavaScript on specific sites.",
    "homepage_url": "https:\/\/github.com\/dpacassi\/disable-javascript",
    "default_locale": "en",
    "icons": {
        "40": "icons\/40\/app.png",
        "48": "icons\/48\/app.png",
        "128": "icons\/128\/app.png"
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "40": "icons\/40\/js-on.png",
            "48": "icons\/48\/js-on.png",
            "128": "icons\/128\/js-on.png"
        },
        "default_title": "Toggle JavaScript"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "options_ui": {
        "browser_style": false,
        "open_in_tab": true,
        "page": "pages\/options.html"
    },
    "permissions": [
        "",
        "activeTab",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "menus",
        "contextMenus"
    ],
    "commands": {
        "toggle-state": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Toggle JavaScript"
        },
        "open-settings": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Open Disable JavaScript settings"
        }
    }
}