Links Panel

Collate all the links on the page into an easily accessible panel

Links Panelとは何ですか?

Links Panelはlonmによって開発されたChromeの拡張機能で、その主な機能は「Collate all the links on the page into an easily accessible panel」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Allows you to quickly see and filter all the links on the current page.

Use the options to configure how the links appear, and what to consider at when filtering (URL, Title..., Case matching).

Use Ctrl or Shift when clicking to select multiple links, and press enter to open them all.

You can also optionally have links sent to a follower tab.                    

拡張機能の基本情報

名前 Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
公式URL https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
説明 Collate all the links on the page into an easily accessible panel
ファイルサイズ 18.2 KB
インストール数 277
現在のバージョン 1.4.4
最終更新日 2021-09-28
公開日 2019-11-27
評価 5.00/5 合計 2 レビュー
開発者 lonm
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/LonMcGregor/LinksPanel
ヘルプページのURL https://github.com/LonMcGregor/LinksPanel
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "version": "1.4.4",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "author": "L\u00e9on McGregor",
    "homepage_url": "https:\/\/github.com\/LonMcGregor\/LinksPanel",
    "background": {
        "scripts": [
            "panel.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "24": "24.png",
            "32": "32.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "panel.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ],
    "permissions": [
        "",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "incognito": "split"
}