Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Hvad er Word Highlighter?
Word Highlighter er en Chrome-udvidelse udviklet af Rafael Almeida, og dens hovedfunktion er "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Udvidelsesskærmbilleder
Download Word Highlighter-udvidelses-CRX-fil
Download Word Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Grundlæggende oplysninger om udvidelsen
Navn | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
Officiel URL | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Beskrivelse | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Filstørrelse | 229 KB |
Antal Installationer | 826 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2016-11-27 |
Udgivelsesdato | 2016-11-27 |
Bedømmelse | 2.75/5 Samlet 8 Bedømmelser |
Udvikler | Rafael Almeida |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Highlighter", "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web", "version": "1.0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/content.js" ] } ] } |