Jimmy's CSS Injector
This extension changes css style for a specific page using style injection.
Cos'è Jimmy's CSS Injector?
Jimmy's CSS Injector è un'estensione di Chrome sviluppata da jimmyruan12, e la sua funzione principale è "This extension changes css style for a specific page using style injection.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jimmy's CSS Injector
Scarica i file di estensione Jimmy's CSS Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cdelafiegdlpmfomhfcckgaihmclcgmd |
URL Ufficiale | https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd |
Descrizione | This extension changes css style for a specific page using style injection. |
Dimensione del File | 2.21 MB |
Conteggio Installazioni | 40 |
Versione Corrente | 1.10.1 |
Ultimo Aggiornamento | 2017-09-07 |
Data di Pubblicazione | 2017-09-07 |
Valutazione | 2.00/5 Totale 1 Valutazioni |
Sviluppatore | jimmyruan12 |
Tipo di Pagamento | free |
Lingue Supportate | 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", "*:\/\/*\/*" ] } |