Bookmark This

Create bookmark entries from links in a page

Bookmark Thisとは何ですか?

Bookmark ThisはOwen Rumneyによって開発されたChromeの拡張機能で、その主な機能は「Create bookmark entries from links in a page」です。

拡張機能のスクリーンショット

screenshot

Bookmark This拡張機能のCRXファイルをダウンロード

Bookmark This拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
公式URL https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
説明 Create bookmark entries from links in a page
ファイルサイズ 9.47 KB
インストール数 28
現在のバージョン 0.9.3
最終更新日 2019-05-30
公開日 2019-05-30
評価 2.00/5 合計 6 レビュー
開発者 Owen Rumney
支払い方法 free
対応言語 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
}