Jimmy's CSS Injector
This extension changes css style for a specific page using style injection.
Wat is Jimmy's CSS Injector?
Jimmy's CSS Injector is een Chrome-extensie ontwikkeld door jimmyruan12, en de belangrijkste functie is "This extension changes css style for a specific page using style injection.".
Extensie Screenshots
Download het CRX-bestand van de extensie Jimmy's CSS Injector
Download Jimmy's 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
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.
Basisinformatie over de Extensie
Naam | |
ID | cdelafiegdlpmfomhfcckgaihmclcgmd |
Officiële URL | https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd |
Beschrijving | This extension changes css style for a specific page using style injection. |
Bestandsgrootte | 2.21 MB |
Aantal Installaties | 40 |
Huidige Versie | 1.10.1 |
Laatst Bijgewerkt | 2017-09-07 |
Publicatiedatum | 2017-09-07 |
Beoordeling | 2.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | jimmyruan12 |
Betalingswijze | free |
Ondersteunde Talen | 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", "*:\/\/*\/*" ] } |