CSS Injector
Inject custom css to specified web page
What is CSS Injector?
CSS Injector is a Chrome extension developed by Unknown, and its main feature is "Inject custom css to specified web page".
Extension Screenshots
Download CSS Injector Extension CRX File
Download CSS 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 custom css to specified web page
Extension Basic Information
Name | CSS Injector |
ID | bonanlhbgkbmdbpgmljgpkcihiccfbha |
Official URL | https://chromewebstore.google.com/detail/css-injector/bonanlhbgkbmdbpgmljgpkcihiccfbha |
Description | Inject custom css to specified web page |
File Size | 142 KB |
Installation Count | 28 |
Current Version | 0.2 |
Last Updated | 2022-03-29 |
Publish Date | 2022-03-29 |
Developer | Unknown |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/m-masataka/css-injector-extension |
Supported Languages | 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" } ] } |