Tabbard

Copy Tab URLs to Clipboard

Qu'est-ce que Tabbard ?

Tabbard est une extension Chrome développée par George Chakhidze, et sa fonction principale est "Copy Tab URLs to Clipboard".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tabbard

Téléchargez les fichiers d'extension Tabbard 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 URLs (with or without titles) from:

— All tabs
— Only selected tabs
— Only focused window tabs

Visit extension options to adjust your preferences.                    

Informations de Base sur l'Extension

Nom Tabbard Tabbard
ID jjgomhmmlcknccaafhilfiodnfbommae
URL Officiel https://chromewebstore.google.com/detail/tabbard/jjgomhmmlcknccaafhilfiodnfbommae
Description Copy Tab URLs to Clipboard
Taille du Fichier 25.74 KB
Nombre d'Installations 126
Version Actuelle 1.1.0.0
Dernière Mise à Jour 2021-07-04
Date de Publication 2019-03-09
Développeur George Chakhidze
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/0xfeeddeadbeef/Tabbard
URL de la Page d'Aide https://github.com/0xfeeddeadbeef/Tabbard/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabbard",
    "short_name": "Tabbard",
    "version": "1.1.0.0",
    "description": "Copy Tab URLs to Clipboard",
    "minimum_chrome_version": "23.0.0.0",
    "icons": {
        "16": "assets\/tabs-16x16.png",
        "24": "assets\/tabs-24x24.png",
        "32": "assets\/tabs-32x32.png",
        "48": "assets\/tabs-48x48.png",
        "64": "assets\/tabs-64x64.png",
        "72": "assets\/tabs-72x72.png",
        "96": "assets\/tabs-96x96.png",
        "128": "assets\/tabs-128x128.png",
        "256": "assets\/tabs-256x256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/tabs-16x16.png",
            "24": "assets\/tabs-24x24.png",
            "32": "assets\/tabs-32x32.png",
            "48": "assets\/tabs-48x48.png",
            "64": "assets\/tabs-64x64.png",
            "72": "assets\/tabs-72x72.png",
            "96": "assets\/tabs-96x96.png",
            "128": "assets\/tabs-128x128.png",
            "256": "assets\/tabs-256x256.png"
        },
        "default_title": "Copy All Tab URLs"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    }
}