Scripty - Javascript Injector
Inject your Javascript into the webpage
什么是Scripty - Javascript Injector?
Scripty - Javascript Injector是由https://scripty.abhisheksatre.com开发的Chrome扩展程序,该扩展的主要功能是“Inject your Javascript into the webpage”。
扩展截图
下载Scripty - Javascript Injector扩展crx文件
下载Scripty - Javascript Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Scripty extension allows you to inject custom javascript to a webpage. Features: 1. Inject script based on URL, host or regex. 2. Download script from Script Store. 3. Run the script directly from the context menu. 4. Publish script on Script Store. 5. Share script with other users. 6. Enable/Disable the scripts How To Use: 1. Add your custom script in the Scripty extension. 2. Select the execution mode: Manual/Automatic 3. To run a script: - Open the extension and click the play button. Or - Run a script from the context menu. Right Click > Select Scripty > Select your script. 4. Automatic scripts run automatically based on provided configuration.
扩展基本信息
名称 | Scripty - Javascript Injector |
ID | milkbiaeapddfnpenedfgbfdacpbcbam |
官方URL | https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam |
简介 | Inject your Javascript into the webpage |
文件大小 | 22.85 KB |
安装次数 | 24,334 |
当前版本 | 0.0.2 |
更新时间 | 2020-01-30 |
上架时间 | 2020-01-30 |
评分 | 4.18/5 共60次评分 |
开发者 | https://scripty.abhisheksatre.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://scripty.abhisheksatre.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scripty - Javascript Injector", "short_name": "Scripty", "description": "Inject your Javascript into the webpage", "version": "0.0.2", "author": "Abhishek Satre", "browser_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage", "webNavigation", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |