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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to right click on any link and save it to your bookmarks."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Easy Bookmark Saver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
        }
    }
}