Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Wat is Simple Word Highlighter?
Simple Word Highlighter is een Chrome-extensie ontwikkeld door berdinemail, en de belangrijkste functie is "This extension highlights words on a webpage as specified by the user".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple Word Highlighter
Download Simple Word Highlighter-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
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
Basisinformatie over de Extensie
Naam | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
Officiële URL | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Beschrijving | This extension highlights words on a webpage as specified by the user |
Bestandsgrootte | 103 KB |
Aantal Installaties | 926 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-10-24 |
Publicatiedatum | 2014-10-24 |
Beoordeling | 3.89/5 Totaal 9 Beoordelingen |
Ontwikkelaar | berdinemail |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |