Inject Code
Inject different javascript or css code to every website, when you want
什么是Inject Code?
Inject Code是由max开发的Chrome扩展程序,该扩展的主要功能是“Inject different javascript or css code to every website, when you want”。
扩展截图
下载Inject Code扩展crx文件
下载Inject Code扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded. Features: - inject custom js/css to website - inject CDN links to website - 38 most popular themes - auto-inject code to site option ( after loaded page scripts will inject automatically) - highlight syntax errors and warnings - hot keys : * Ctrl+Enter - run code, * Ctrl+F - find in editor For inject code to site: - open browser devtools panel, - go to "Inject code" tab - write code ( on typing code autosaving ) - on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )
扩展基本信息
名称 | Inject Code |
ID | gpaakhhkcmlenabckmapmlfnajboobbi |
官方URL | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
简介 | Inject different javascript or css code to every website, when you want |
文件大小 | 2.96 MB |
安装次数 | 792 |
当前版本 | 0.91.21 |
更新时间 | 2020-08-04 |
上架时间 | 2020-07-06 |
评分 | 4.00/5 共6次评分 |
开发者 | max |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Code", "description": "Inject different javascript or css code to every website, when you want", "version": "0.91.21", "minimum_chrome_version": "16.0.884", "permissions": [ "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "devtools_page": "devtools.html", "manifest_version": 2 } |