Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Apa itu Javascript Toggle?
Javascript Toggle adalah ekstensi Chrome yang dikembangkan oleh Kai Yuan, dan fitur utamanya adalah "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Javascript Toggle
Unduh file ekstensi 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
Just press Ctrl+I on Windows/Linux or Cmd + J on Mac, or click on the extension icon to toggle the Javascript setting for the page in the current tab. Do you prefer to review and compile the code yourself? No problem, the code is open-sourced at https://github.com/thngkaiyuan/js-toggle/tree/master.
Informasi Dasar Ekstensi
Nama | Javascript Toggle |
ID | mdjbjncpgebfmegaljihajkedlaajeja |
URL Resmi | https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja |
Deskripsi | A really simple, clean and lightweight extension for toggling the Javascript setting on any page. |
Ukuran File | 39.36 KB |
Jumlah Instalasi | 232 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2019-05-04 |
Tanggal Publikasi | 2019-05-04 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Kai Yuan |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/thngkaiyuan/js-toggle/tree/master |
URL Halaman Bantuan | https://github.com/thngkaiyuan/js-toggle/tree/master |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Javascript Toggle", "version": "1.5", "description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.", "permissions": [ "tabs", "contentSettings" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle-js": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+J" }, "description": "Toggle the Javascript setting on this page." } }, "icons": { "16": "images\/allow-16.png", "32": "images\/allow-32.png", "48": "images\/allow-48.png" }, "browser_action": { "default_icon": { "16": "images\/allow-16.png", "32": "images\/allow-32.png", "48": "images\/allow-48.png" }, "default_title": "Toggle the Javascript setting on any page with ease." }, "manifest_version": 2 } |