Bookmark This

Create bookmark entries from links in a page

Qu'est-ce que Bookmark This ?

Bookmark This est une extension Chrome développée par Owen Rumney, et sa fonction principale est "Create bookmark entries from links in a page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Bookmark This

Téléchargez les fichiers d'extension Bookmark This au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
URL Officiel https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Description Create bookmark entries from links in a page
Taille du Fichier 9.47 KB
Nombre d'Installations 28
Version Actuelle 0.9.3
Dernière Mise à Jour 2019-05-30
Date de Publication 2019-05-30
Évaluation 2.00/5 Total 6 Évaluations
Développeur Owen Rumney
Type de Paiement free
Langues Prises en Charge 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
}