Google Keyword Highlighter
Highlights Google-matched words in colour
Was ist Google Keyword Highlighter?
Google Keyword Highlighter ist eine Chrome-Erweiterung, die von Old Pike Software entwickelt wurde, und ihr Hauptmerkmal ist "Highlights Google-matched words in colour".
Erweiterungsscreenshots
Google Keyword Highlighter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Keyword Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This very simple extension allows the addition of a highlight colour to all the matched words Google finds in the excerpts shown in a search results page (which normally are displayed only in a rather discreet boldface). The highlight colour can be chosen on the extension's Options Page. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aocmoogbdjejoimokamdoekglbibpnda |
| Offizielle URL | https://chromewebstore.google.com/detail/google-keyword-highlighte/aocmoogbdjejoimokamdoekglbibpnda |
| Beschreibung | Highlights Google-matched words in colour |
| Dateigröße | 46.83 KB |
| Installationsanzahl | 28 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2024-02-04 |
| Veröffentlichungsdatum | 2021-10-21 |
| Entwickler | Old Pike Software |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://oldpike.bxtrom.eu/privacy_policy.html |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Google Keyword Highlighter",
"version": "1.2",
"description": "Highlights Google-matched words in colour",
"icons": {
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"options_page": "options.html",
"permissions": [
"storage"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"jquery.js",
"content.js"
],
"matches": [
"https:\/\/*.google.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icon_128.png"
],
"matches": [
"https:\/\/*.google.com\/*"
]
}
]
} | |