Multi-Highlight Tool
Search and highlight multiple words on web pages.
Vad är Multi-Highlight Tool?
Multi-Highlight Tool är en Chrome-tillägg utvecklad av multihighttoolextension, och dess huvudfunktion är "Search and highlight multiple words on web pages.".
Tilläggsskärmbilder
Ladda ner Multi-Highlight Tool-förlängningens CRX-fil
Ladda ner Multi-Highlight Tool-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
Easily add words to a list and have them highlighted on web pages. Grundläggande Information om Tillägg
| Namn | |
| ID | elbamfklmdfhbighpndmfdidofdonigb |
| Officiell webbadress | https://chromewebstore.google.com/detail/multi-highlight-tool/elbamfklmdfhbighpndmfdidofdonigb |
| Beskrivning | Search and highlight multiple words on web pages. |
| Filstorlek | 50.12 KB |
| Antal Installationer | 30,204 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2021-08-28 |
| Publiceringsdatum | 2021-08-28 |
| Betyg | 4.43/5 Totalt 14 Betyg |
| Utvecklare | multihighttoolextension |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"background": {
"persistent": false,
"scripts": [
"js\/jquery.js",
"js\/background.js"
]
},
"browser_action": {
"default_icon": "img\/19x19.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"css\/highlight.css"
],
"js": [
"js\/jquery.js",
"js\/highlighter.js",
"js\/content-action.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
]
}
],
"description": "Search and highlight multiple words on web pages.",
"icons": {
"100": "img\/100x100.png",
"128": "img\/128x128.png",
"19": "img\/19x19.png",
"48": "img\/48x48.png"
},
"manifest_version": 2,
"name": "Multi-Highlight Tool",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0"
} | |