Links Panel

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

Co je Links Panel?

Links Panel je rozšíření Chrome vyvinuté lonm, a jeho hlavní funkcí je „Collate all the links on the page into an easily accessible panel“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Links Panel

Stáhněte si soubory rozšíření Links Panel ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
Oficiální URL https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
Popis Collate all the links on the page into an easily accessible panel
Velikost souboru 18.2 KB
Počet instalací 277
Aktuální Verze 1.4.4
Poslední Aktualizace 2021-09-28
Datum Vydání 2019-11-27
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář lonm
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/LonMcGregor/LinksPanel
URL Stránky Nápovědy https://github.com/LonMcGregor/LinksPanel
Podporované Jazyky 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"
}