Link to Bookmark

Right-click on one link and add it to your Bookmarks folder.

Link to Bookmarkคืออะไร?

Link to Bookmark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tzengshinfu และคุณลักษณะหลักของมันคือ "Right-click on one link and add it to your Bookmarks folder."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link to Bookmark

ดาวน์โหลดไฟล์ส่วนขยาย Link to Bookmark ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you tired of using drag and drop to bookmark?
Now you can right-click on a link to bookmark immediately!

Usage:
1. Install this extension.
2. Set the folder name you want to save Bookmarks.
3. Right-click the link you want to bookmark.
4. Click "Add this link to bookmark" and enjoy it!

Updates:
Version 2.4.2 Stability improvements.
Version 2.4.1 Remove feature: "Add this link[s] to bookmark".
Version 2.4 Bug fix: Fix bookmark added with blank link title.
Version 2.3 Bug fix: Fix no bookmark added when link title including single quote/double quote.
Version 2.2:Add feature: i18N(zh_TW, zh_CN, en).
Version 2.1:Bug fix: An error message occurs when add links to bookmark.
Version 2.0:Add feature: Select a range of text including hyperlinks to bookmark.
Version 1.2:Bug fix: Remove trailing and leading space from link's name.
Version 1.1:Bug fix: Installing and don't need to refresh the opened tabs to apply this extension.


Special thanks to Jack Cai(icon designer, http://www.doublejdesign.co.uk/)
I download this nice icons from Icon Search Engine(http://findicons.com/search/bookmark)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Link to Bookmark Link to Bookmark
ID mhdidjpeopgpmlknlinmkplhbgopjegj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-to-bookmark/mhdidjpeopgpmlknlinmkplhbgopjegj
คำอธิบาย Right-click on one link and add it to your Bookmarks folder.
ขนาดไฟล์ 19.08 KB
จำนวนการติดตั้ง 575
เวอร์ชันปัจจุบัน 2.4.2
อัปเดตครั้งล่าสุด 2017-03-24
วันที่เผยแพร่ 2017-03-23
คะแนน 4.67/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา tzengshinfu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "2.4.2",
    "default_locale": "zh_TW",
    "options_page": "options.html",
    "minimum_chrome_version": "26",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "bookmarks",
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}