Bookmark This

Create bookmark entries from links in a page

Wat is Bookmark This?

Bookmark This is een Chrome-extensie ontwikkeld door Owen Rumney, en de belangrijkste functie is "Create bookmark entries from links in a page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Bookmark This

Download Bookmark This-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
Officiële URL https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Beschrijving Create bookmark entries from links in a page
Bestandsgrootte 9.47 KB
Aantal Installaties 28
Huidige Versie 0.9.3
Laatst Bijgewerkt 2019-05-30
Publicatiedatum 2019-05-30
Beoordeling 2.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Owen Rumney
Betalingswijze free
Ondersteunde Talen 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
}