Open Multiple Links

Select text with links and open them all in new tabs

Qu'est-ce que Open Multiple Links ?

Open Multiple Links est une extension Chrome développée par Marcin Jahn, et sa fonction principale est "Select text with links and open them all in new tabs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open Multiple Links

Téléchargez les fichiers d'extension Open Multiple Links 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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

Informations de Base sur l'Extension

Nom Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
URL Officiel https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Description Select text with links and open them all in new tabs
Taille du Fichier 22.89 KB
Nombre d'Installations 2,362
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-01-10
Date de Publication 2023-01-08
Évaluation 1.67/5 Total 6 Évaluations
Développeur Marcin Jahn
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://marcinjahn.com
URL de la Page d'Aide https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}