Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
Apa itu Simple JavaScript Toggle?
Simple JavaScript Toggle adalah ekstensi Chrome yang dikembangkan oleh https://squishythoughts.com, dan fitur utamanya adalah "Enable or disable JavaScript on a site-by-site basis.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Simple JavaScript Toggle
Unduh file ekstensi Simple JavaScript Toggle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Simple JavaScript Toggle |
ID | mhidlbegmoiddmebedbiijmpckambgfj |
URL Resmi | https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj |
Deskripsi | Enable or disable JavaScript on a site-by-site basis. |
Ukuran File | 19.15 KB |
Jumlah Instalasi | 897 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2014-07-20 |
Tanggal Publikasi | 2014-07-20 |
Penilaian | 3.60/5 Total 10 Penilaian |
Pengembang | https://squishythoughts.com |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |