Bookmark This

Create bookmark entries from links in a page

What is Bookmark This?

Bookmark This is a Chrome extension developed by Owen Rumney, and its main feature is "Create bookmark entries from links in a page".

Extension Screenshots

screenshot

Download Bookmark This Extension CRX File

Download Bookmark This extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
Official URL https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Description Create bookmark entries from links in a page
File Size 9.47 KB
Installation Count 28
Current Version 0.9.3
Last Updated 2019-05-30
Publish Date 2019-05-30
Rating 2.00/5 Total 6 Ratings
Developer Owen Rumney
Payment Type free
Supported Languages 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
}