Script Panel
Allows to create quick buttons with your JS !
Script Panel là gì?
Script Panel là một tiện ích mở rộng Chrome được phát triển bởi http://sintosp.blogspot.com, và tính năng chính của nó là "Allows to create quick buttons with your JS !".
Ả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 Script Panel
Tải xuống các tệp mở rộng Script Panel 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
Easy to use extension to collect JavaScript scripts in a single place, group them, import/export script pakages in few mouse clicks. * Go to options page to create/import/export scripts; * Open browser on any machine (under your Google account) and use the same synchronized scripts. GIT: https://github.com/wideserg/CE/tree/master/ScriptPanel Packages repository: https://github.com/wideserg/CE/tree/master/ScriptPanel/packages
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nkadepnecnanfaoinkachcnjbfagedlh |
URL Chính Thức | https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh |
Mô tả | Allows to create quick buttons with your JS ! |
Kích Thước Tệp | 173 KB |
Số Lần Cài Đặt | 75 |
Phiên Bản Hiện Tại | 0.9.1 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Nhà Phát Triển | http://sintosp.blogspot.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", "name": "Script Panel", "short_name": "ScriptPanel", "author": "Sergey Shiroky", "homepage_url": "http:\/\/sintosp.blogspot.com\/", "version": "0.9.1", "description": "Allows to create quick buttons with your JS !", "background": { "scripts": [ "scripts\/bg.js" ] }, "icons": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "options_ui": { "page": "pages\/options.html", "chrome_style": true, "open_in_tab": true }, "browser_action": { "default_icon": "images\/logo-16.png", "default_popup": "pages\/infobar.html" }, "permissions": [ "tabs", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/cs.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |