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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
        }
    }
}