Easy Bookmark Saver

Allows you to right click on any link and save it to your bookmarks.

Easy Bookmark Saverとは何ですか?

Easy Bookmark SaverはElan Paulによって開発されたChromeの拡張機能で、その主な機能は「Allows you to right click on any link and save it to your bookmarks.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Easy Bookmark Saver allows you to right-click any link and add it to the bookmarks bar without having to load the page or select which folder. Just right-click the link, select "Add to EZ Bookmark" and that's it.                    

拡張機能の基本情報

名前 Easy Bookmark Saver Easy Bookmark Saver
ID aaeoaemhmdbhpmdlcgamoncadfeddhgh
公式URL https://chromewebstore.google.com/detail/easy-bookmark-saver/aaeoaemhmdbhpmdlcgamoncadfeddhgh
説明 Allows you to right click on any link and save it to your bookmarks.
ファイルサイズ 179 KB
インストール数 120
現在のバージョン 0.2
最終更新日 2016-07-17
公開日 2016-07-17
評価 3.00/5 合計 2 レビュー
開発者 Elan Paul
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Bookmark Saver",
    "short_name": "EZ Mark",
    "description": "Allows you to right click on any link and save it to your bookmarks.",
    "version": "0.2",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "bookmarks",
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "sef.png",
        "delete.png"
    ],
    "commands": {
        "showcontentdialog": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "show content dialog"
        }
    }
}