Bookmark This

Create bookmark entries from links in a page

什麼是Bookmark This?

Bookmark This是由Owen Rumney開發的Chrome擴展程式,該擴展的主要功能是“Create bookmark entries from links in a page”。

擴展截圖

screenshot

下載Bookmark This擴展crx文件

下載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
官方網址 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
}