Bookmark This

Create bookmark entries from links in a page

Apa itu Bookmark This?

Bookmark This adalah ekstensi Chrome yang dikembangkan oleh Owen Rumney, dan fitur utamanya adalah "Create bookmark entries from links in a page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Bookmark This

Unduh file ekstensi Bookmark This dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
URL Resmi https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Deskripsi Create bookmark entries from links in a page
Ukuran File 9.47 KB
Jumlah Instalasi 28
Versi Saat Ini 0.9.3
Terakhir Diperbarui 2019-05-30
Tanggal Publikasi 2019-05-30
Penilaian 2.00/5 Total 6 Penilaian
Pengembang Owen Rumney
Tipe Pembayaran free
Bahasa yang Didukung 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
}