Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Javascript Toggle là gì?
Javascript Toggle là một tiện ích mở rộng Chrome được phát triển bởi Kai Yuan, và tính năng chính của nó là "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Javascript Toggle
Tải xuống các tệp mở rộng 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Javascript Toggle |
ID | mdjbjncpgebfmegaljihajkedlaajeja |
URL Chính Thức | https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja |
Mô tả | A really simple, clean and lightweight extension for toggling the Javascript setting on any page. |
Kích Thước Tệp | 39.36 KB |
Số Lần Cài Đặt | 232 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2019-05-04 |
Ngày Phát Hành | 2019-05-04 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Kai Yuan |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/thngkaiyuan/js-toggle/tree/master |
URL Trang Trợ Giúp | https://github.com/thngkaiyuan/js-toggle/tree/master |
Ngôn Ngữ Được Hỗ Trợ | 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 } |