Bookmark Checker

Tells you if you have a link bookmarked

Co to jest Bookmark Checker?

Bookmark Checker to rozszerzenie Chrome opracowane przez KnowhereStudios, a jego główną funkcją jest „Tells you if you have a link bookmarked”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bookmark Checker

Pobierz pliki rozszerzeń Bookmark Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bookmark Checker Bookmark Checker
ID facjaacomlejpkcfkplhmpkolgnonidh
Oficjalny URL https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh
Opis Tells you if you have a link bookmarked
Rozmiar pliku 103 KB
Liczba instalacji 28
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-07-22
Data Publikacji 2020-07-07
Deweloper KnowhereStudios
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}