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
电子邮箱 [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"
}