Jimmy's CSS Injector
This extension changes css style for a specific page using style injection.
Was ist Jimmy's CSS Injector?
Jimmy's CSS Injector ist eine Chrome-Erweiterung, die von jimmyruan12 entwickelt wurde, und ihr Hauptmerkmal ist "This extension changes css style for a specific page using style injection.".
Erweiterungsscreenshots
Jimmy's CSS Injector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jimmy's CSS Injector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Simple chrome extension that can inject css into the existing web page. This app can accomplish the following: 1. Inject css into the existing web page. 2. It allows saving multiple css styles in the chrome system. 3. It can undo injected css style.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cdelafiegdlpmfomhfcckgaihmclcgmd |
Offizielle URL | https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd |
Beschreibung | This extension changes css style for a specific page using style injection. |
Dateigröße | 2.21 MB |
Installationsanzahl | 40 |
Aktuelle Version | 1.10.1 |
Letztes Update | 2017-09-07 |
Veröffentlichungsdatum | 2017-09-07 |
Bewertung | 2.00/5 Insgesamt 1 Bewertungen |
Entwickler | jimmyruan12 |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jimmy's CSS Injector", "short name": "css injector", "description": "This extension changes css style for a specific page using style injection.", "version": "1.10.1", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "page_action": { "default_icon": "icons\/icon16.png", "default_popup": "popup.html", "default_title": "PageFontStyle" }, "background": { "scripts": [ "js\/helper.js", "js\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-3.1.0.min.js", "js\/helper.js", "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "permissions": [ "tabs", "contextMenus", "tts", "storage", "webNavigation", "*:\/\/*\/*" ] } |