Javascript Injector
Inject javascript to the webpage you are visiting
什么是Javascript Injector?
Javascript Injector是由Daniel Han开发的Chrome扩展程序,该扩展的主要功能是“Inject javascript to the webpage you are visiting”。
扩展截图
下载Javascript Injector扩展crx文件
下载Javascript Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices. For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.
扩展基本信息
名称 | Javascript Injector |
ID | ejnccfcackblkelbafbolcpjfpcmbplg |
官方URL | https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg |
简介 | Inject javascript to the webpage you are visiting |
文件大小 | 59.53 KB |
安装次数 | 2,000 |
当前版本 | 1.2 |
更新时间 | 2017-06-16 |
上架时间 | 2017-06-16 |
评分 | 4.13/5 共8次评分 |
开发者 | Daniel Han |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hex0cter/js-injector |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javascript Injector", "author": "Daniel Han", "short_name": "JS injector", "description": "Inject javascript to the webpage you are visiting", "version": "1.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "default_title": "Javascript Injector", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ] } |