Bookmark Checker
Tells you if you have a link bookmarked
Wat is Bookmark Checker?
Bookmark Checker is een Chrome-extensie ontwikkeld door KnowhereStudios, en de belangrijkste functie is "Tells you if you have a link bookmarked".
Extensie Screenshots
Download het CRX-bestand van de extensie Bookmark Checker
Download Bookmark Checker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | facjaacomlejpkcfkplhmpkolgnonidh |
| Officiële URL | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
| Beschrijving | Tells you if you have a link bookmarked |
| Bestandsgrootte | 103 KB |
| Aantal Installaties | 28 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2020-07-22 |
| Publicatiedatum | 2020-07-07 |
| Ontwikkelaar | KnowhereStudios |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |