Links Panel

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

Cos'è Links Panel?

Links Panel è un'estensione di Chrome sviluppata da lonm, e la sua funzione principale è "Collate all the links on the page into an easily accessible panel".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Links Panel

Scarica i file di estensione Links Panel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
URL Ufficiale https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
Descrizione Collate all the links on the page into an easily accessible panel
Dimensione del File 18.2 KB
Conteggio Installazioni 277
Versione Corrente 1.4.4
Ultimo Aggiornamento 2021-09-28
Data di Pubblicazione 2019-11-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore lonm
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/LonMcGregor/LinksPanel
URL della Pagina di Aiuto https://github.com/LonMcGregor/LinksPanel
Lingue Supportate 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"
}