CSS Injector
Inject custom css to specified web page
Wat is CSS Injector?
CSS Injector is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Inject custom css to specified web page".
Extensie Screenshots
Download het CRX-bestand van de extensie CSS Injector
Download CSS 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 custom css to specified web page
Basisinformatie over de Extensie
Naam | CSS Injector |
ID | bonanlhbgkbmdbpgmljgpkcihiccfbha |
Officiële URL | https://chromewebstore.google.com/detail/css-injector/bonanlhbgkbmdbpgmljgpkcihiccfbha |
Beschrijving | Inject custom css to specified web page |
Bestandsgrootte | 142 KB |
Aantal Installaties | 28 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2022-03-29 |
Publicatiedatum | 2022-03-29 |
Ontwikkelaar | Unknown |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/m-masataka/css-injector-extension |
Ondersteunde Talen | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CSS Injector", "manifest_version": 3, "version": "0.2", "permissions": [ "activeTab", "storage" ], "options_page": "index.html", "background": { "service_worker": "background.js" }, "action": { "default_icon": "disabled.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |