Links Panel

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

Was ist Links Panel?

Links Panel ist eine Chrome-Erweiterung, die von lonm entwickelt wurde, und ihr Hauptmerkmal ist "Collate all the links on the page into an easily accessible panel".

Erweiterungsscreenshots

screenshot
screenshot

Links Panel-Erweiterungs-CRX-Datei herunterladen

Laden Sie Links Panel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
Offizielle URL https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
Beschreibung Collate all the links on the page into an easily accessible panel
Dateigröße 18.2 KB
Installationsanzahl 277
Aktuelle Version 1.4.4
Letztes Update 2021-09-28
Veröffentlichungsdatum 2019-11-27
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler lonm
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/LonMcGregor/LinksPanel
Hilfeseite URL https://github.com/LonMcGregor/LinksPanel
Unterstützte Sprachen 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"
}