Bookmark Checker

Tells you if you have a link bookmarked

Bookmark Checkerとは何ですか?

Bookmark CheckerはKnowhereStudiosによって開発されたChromeの拡張機能で、その主な機能は「Tells you if you have a link bookmarked」です。

拡張機能のスクリーンショット

screenshot

Bookmark Checker拡張機能のCRXファイルをダウンロード

Bookmark Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Bookmark Checker Bookmark Checker
ID facjaacomlejpkcfkplhmpkolgnonidh
公式URL https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh
説明 Tells you if you have a link bookmarked
ファイルサイズ 103 KB
インストール数 28
現在のバージョン 1.0.1
最終更新日 2020-07-22
公開日 2020-07-07
開発者 KnowhereStudios
Eメール [email protected]
支払い方法 free
対応言語 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
}