Code Injector
Inject your code (html, css, js) into page.
What is Code Injector?
Code Injector is a Chrome extension developed by dmitry.pechkovsky, and its main feature is "Inject your code (html, css, js) into page.".
Extension Screenshots
Download Code Injector Extension CRX File
Download Code Injector 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
Inject your own code (html, css, js) into any page. Customize, configure, parse any page! What' new in 1.13: - Libraries! What' new in 1.14: - Bugfixes.
Extension Basic Information
Name | |
ID | fehfokkkkeamcfiaogfdkkpoblipkmbd |
Official URL | https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd |
Description | Inject your code (html, css, js) into page. |
File Size | 399 KB |
Installation Count | 1,000 |
Current Version | 1.14 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 3.42/5 Total 19 Ratings |
Developer | dmitry.pechkovsky |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code Injector", "description": "Inject your code (html, css, js) into page.", "manifest_version": 2, "version": "1.14", "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "permissions": [ "downloads", "storage", "unlimitedStorage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Code Injector", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "functions.js", "config.js", "background.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |