Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Vad är Word Highlighter?
Word Highlighter är en Chrome-tillägg utvecklad av Rafael Almeida, och dess huvudfunktion är "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Tilläggsskärmbilder
Ladda ner Word Highlighter-förlängningens CRX-fil
Ladda ner 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
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter Grundläggande Information om Tillägg
| Namn | |
| ID | ncjaameocjfjjnjcijikhkhifncjijhn |
| Officiell webbadress | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
| Beskrivning | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
| Filstorlek | 229 KB |
| Antal Installationer | 826 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2016-11-27 |
| Publiceringsdatum | 2016-11-27 |
| Betyg | 2.75/5 Totalt 8 Betyg |
| Utvecklare | Rafael Almeida |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |