Tab Copy

Copy all tabs to clipboard. No bells and whistles.

Vad är Tab Copy?

Tab Copy är en Chrome-tillägg utvecklad av Reece, och dess huvudfunktion är "Copy all tabs to clipboard. No bells and whistles.".

Tilläggsskärmbilder

screenshot

Ladda ner Tab Copy-förlängningens CRX-fil

Ladda ner Tab Copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Copies the tabs that are open in the window to the clipboard                    

Grundläggande Information om Tillägg

Namn Tab Copy Tab Copy
ID lmnpchdgonnfapjelemnfafmgkndeefc
Officiell webbadress https://chromewebstore.google.com/detail/tab-copy/lmnpchdgonnfapjelemnfafmgkndeefc
Beskrivning Copy all tabs to clipboard. No bells and whistles.
Filstorlek 10.02 KB
Antal Installationer 151
Aktuell Version 1.0
Senast Uppdaterad 2019-11-19
Publiceringsdatum 2019-11-19
Utvecklare Reece
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Copy",
    "version": "1.0",
    "description": "Copy all tabs to clipboard. No bells and whistles.",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "tabs"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Copy to clipboard."
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    }
}