Bookmark This

Create bookmark entries from links in a page

Bookmark Thisคืออะไร?

Bookmark This เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Owen Rumney และคุณลักษณะหลักของมันคือ "Create bookmark entries from links in a page"

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

screenshot

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

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

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

                        Don't interrupt your flow when reading an article, create bookmarks from any link in the current page, with out having to load the link.

Simply right click the link and select "Bookmark this", if the suggested bookmark title isn't right, just change it.

Early stages, so feedback welcome.                    

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

ชื่อ Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
คำอธิบาย Create bookmark entries from links in a page
ขนาดไฟล์ 9.47 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 0.9.3
อัปเดตครั้งล่าสุด 2019-05-30
วันที่เผยแพร่ 2019-05-30
คะแนน 2.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Owen Rumney
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark This",
    "description": "Create bookmark entries from links in a page",
    "version": "0.9.3",
    "permissions": [
        "bookmarks",
        "contextMenus",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "runat": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}