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
官方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
}