Easy Bookmark Saver

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

ما هو Easy Bookmark Saver؟

Easy Bookmark Saver هو إضافة Chrome تم تطويرها بواسطة Elan Paul، والميزة الرئيسية لها هي "Allows you to right click on any link and save it to your bookmarks.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Easy Bookmark Saver

قم بتنزيل ملفات الامتداد Easy Bookmark Saver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    }
}