Code Injector
Inject your code (html, css, js) into page.
Wat is Code Injector?
Code Injector is een Chrome-extensie ontwikkeld door dmitry.pechkovsky, en de belangrijkste functie is "Inject your code (html, css, js) into page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Code Injector
Download Code Injector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | fehfokkkkeamcfiaogfdkkpoblipkmbd |
Officiële URL | https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd |
Beschrijving | Inject your code (html, css, js) into page. |
Bestandsgrootte | 399 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.14 |
Laatst Bijgewerkt | 2019-03-08 |
Publicatiedatum | 2019-03-08 |
Beoordeling | 3.42/5 Totaal 19 Beoordelingen |
Ontwikkelaar | dmitry.pechkovsky |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |