Inject JS
This extension will inject javascript from a URL into the current webpage
什么是Inject JS?
Inject JS是由dailenspencer12开发的Chrome扩展程序,该扩展的主要功能是“This extension will inject javascript from a URL into the current webpage”。
下载Inject JS扩展crx文件
下载Inject JS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | ppbefedgpemhmbmiehiodeobnoekdhfo |
官方URL | https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo |
简介 | This extension will inject javascript from a URL into the current webpage |
文件大小 | 40.14 KB |
安装次数 | 80 |
当前版本 | 1.1 |
更新时间 | 2016-09-29 |
上架时间 | 2016-09-29 |
开发者 | dailenspencer12 |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inject JS", "description": "This extension will inject javascript from a URL into the current webpage", "version": "1.1", "browser_action": { "default_icon": "rocket.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery.min.js", "popup.js" ] } ], "icons": { "128": "rocket128.png" }, "permissions": [ "activeTab" ] } |