Code Injector
Inject your code (html, css, js) into page.
Vad är Code Injector?
Code Injector är en Chrome-tillägg utvecklad av dmitry.pechkovsky, och dess huvudfunktion är "Inject your code (html, css, js) into page.".
Tilläggsskärmbilder
Ladda ner Code Injector-förlängningens CRX-fil
Ladda ner Code Injector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | fehfokkkkeamcfiaogfdkkpoblipkmbd |
Officiell webbadress | https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd |
Beskrivning | Inject your code (html, css, js) into page. |
Filstorlek | 399 KB |
Antal Installationer | 1,000 |
Aktuell Version | 1.14 |
Senast Uppdaterad | 2019-03-08 |
Publiceringsdatum | 2019-03-08 |
Betyg | 3.42/5 Totalt 19 Betyg |
Utvecklare | dmitry.pechkovsky |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } } |