Links Panel

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

Qu'est-ce que Links Panel ?

Links Panel est une extension Chrome développée par lonm, et sa fonction principale est "Collate all the links on the page into an easily accessible panel".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Links Panel

Téléchargez les fichiers d'extension Links Panel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
URL Officiel https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
Description Collate all the links on the page into an easily accessible panel
Taille du Fichier 18.2 KB
Nombre d'Installations 277
Version Actuelle 1.4.4
Dernière Mise à Jour 2021-09-28
Date de Publication 2019-11-27
Évaluation 5.00/5 Total 2 Évaluations
Développeur lonm
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/LonMcGregor/LinksPanel
URL de la Page d'Aide https://github.com/LonMcGregor/LinksPanel
Langues Prises en Charge 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"
}