Bookmark This

Create bookmark entries from links in a page

Co to jest Bookmark This?

Bookmark This to rozszerzenie Chrome opracowane przez Owen Rumney, a jego główną funkcją jest „Create bookmark entries from links in a page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bookmark This

Pobierz pliki rozszerzeń Bookmark This w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
Oficjalny URL https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Opis Create bookmark entries from links in a page
Rozmiar pliku 9.47 KB
Liczba instalacji 28
Aktualna Wersja 0.9.3
Ostatnia Aktualizacja 2019-05-30
Data Publikacji 2019-05-30
Ocena 2.00/5 Łącznie 6 Oceny
Deweloper Owen Rumney
Typ Płatności free
Obsługiwane Języki 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
}