Inject JS
This extension will inject javascript from a URL into the current webpage
What is Inject JS?
Inject JS is a Chrome extension developed by dailenspencer12, and its main feature is "This extension will inject javascript from a URL into the current webpage".
Download Inject JS Extension CRX File
Download Inject JS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
| Name | |
| ID | ppbefedgpemhmbmiehiodeobnoekdhfo |
| Official URL | https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo |
| Description | This extension will inject javascript from a URL into the current webpage |
| File Size | 40.14 KB |
| Installation Count | 80 |
| Current Version | 1.1 |
| Last Updated | 2016-09-29 |
| Publish Date | 2016-09-29 |
| Developer | dailenspencer12 |
| Payment Type | free |
| Supported Languages | 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"
]
} | |