Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
什么是Inject Javascript -- Synced & Open Source?
Inject Javascript -- Synced & Open Source是由quentin.bramas开发的Chrome扩展程序,该扩展的主要功能是“Inject javascript in web pages, synced across your devices”。
扩展截图
下载Inject Javascript -- Synced & Open Source扩展crx文件
下载Inject Javascript -- Synced & Open Source扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to add custom js to any web page. Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad. https://github.com/Bramas/Synced-Injected-Scripts Everything you type is automatically saved and synced. You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script
扩展基本信息
名称 | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
官方URL | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
简介 | Inject javascript in web pages, synced across your devices |
文件大小 | 538 KB |
安装次数 | 356 |
当前版本 | 1.1 |
更新时间 | 2020-03-28 |
上架时间 | 2020-03-26 |
评分 | 5.00/5 共1次评分 |
开发者 | quentin.bramas |
付费类型 | free |
扩展官网 | https://github.com/Bramas/Synced-Injected-Scripts |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Javascript -- Synced & Open Source", "version": "1.1", "description": "Inject javascript in web pages, synced across your devices", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" } }, "icons": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" }, "manifest_version": 2 } |