Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Cos'è Simple Word Highlighter?
Simple Word Highlighter è un'estensione di Chrome sviluppata da berdinemail, e la sua funzione principale è "This extension highlights words on a webpage as specified by the user".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simple Word Highlighter
Scarica i file di estensione Simple Word Highlighter 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
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
Informazioni di Base sull'Estensione
Nome | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
URL Ufficiale | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Descrizione | This extension highlights words on a webpage as specified by the user |
Dimensione del File | 103 KB |
Conteggio Installazioni | 926 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-10-24 |
Data di Pubblicazione | 2014-10-24 |
Valutazione | 3.89/5 Totale 9 Valutazioni |
Sviluppatore | berdinemail |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |