Grab Session Links

Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.

Qu'est-ce que Grab Session Links ?

Grab Session Links est une extension Chrome développée par solidhydrogenblock, et sa fonction principale est "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Grab Session Links

Téléchargez les fichiers d'extension Grab Session 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

                        - Copy all links from open tabs (in the current window).
- Reopen a bunch of copied links (in new tabs) by pressing just one button.

Useful in situations where you need to get rid of tab clutter but save links for later.

Icon made by Freepik from www.flaticon.com                    

Informations de Base sur l'Extension

Nom Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
URL Officiel https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Description Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Taille du Fichier 9.96 KB
Nombre d'Installations 19
Version Actuelle 0.4
Dernière Mise à Jour 2020-03-19
Date de Publication 2020-03-19
Évaluation 5.00/5 Total 2 Évaluations
Développeur solidhydrogenblock
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grab Session Links",
    "version": "0.4",
    "description": "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "clipboardWrite",
        "clipboardRead"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/save16.png",
        "32": "icons\/save32.png",
        "128": "icons\/save128.png",
        "256": "icons\/save256.png"
    }
}