Bookmark Checker
Tells you if you have a link bookmarked
Was ist Bookmark Checker?
Bookmark Checker ist eine Chrome-Erweiterung, die von KnowhereStudios entwickelt wurde, und ihr Hauptmerkmal ist "Tells you if you have a link bookmarked".
Erweiterungsscreenshots
Bookmark Checker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bookmark Checker-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 extension allows you to see if a link your cursor is on is bookmarked or not.
Instructions:
Install the Bookmark Checker extension.
Hover over any link on page.
If the link is bookmarked an icon will appear next to it. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | facjaacomlejpkcfkplhmpkolgnonidh |
| Offizielle URL | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
| Beschreibung | Tells you if you have a link bookmarked |
| Dateigröße | 103 KB |
| Installationsanzahl | 28 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2020-07-22 |
| Veröffentlichungsdatum | 2020-07-07 |
| Entwickler | KnowhereStudios |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bookmark Checker",
"version": "1.0.1",
"description": "Tells you if you have a link bookmarked",
"permissions": [
"declarativeContent",
"activeTab",
"bookmarks"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
}
},
"icons": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"jquery.js",
"content_script.js"
]
}
],
"manifest_version": 2
} | |