Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Vad är Simple Word Highlighter?
Simple Word Highlighter är en Chrome-tillägg utvecklad av berdinemail, och dess huvudfunktion är "This extension highlights words on a webpage as specified by the user".
Tilläggsskärmbilder
Ladda ner Simple Word Highlighter-förlängningens CRX-fil
Ladda ner Simple Word Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
Officiell webbadress | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Beskrivning | This extension highlights words on a webpage as specified by the user |
Filstorlek | 103 KB |
Antal Installationer | 926 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2014-10-24 |
Publiceringsdatum | 2014-10-24 |
Betyg | 3.89/5 Totalt 9 Betyg |
Utvecklare | berdinemail |
Betalningssätt | free |
Stödda Språk | 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" ] } |