Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

Qu'est-ce que Tab Link Copier ?

Tab Link Copier est une extension Chrome développée par Volodya Shtenovych, et sa fonction principale est "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab Link Copier

Téléchargez les fichiers d'extension Tab Link Copier 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

                        Copies the current page url and title as a rich text link. 

Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.

To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.                    

Informations de Base sur l'Extension

Nom Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
URL Officiel https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
Description Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Taille du Fichier 19.26 KB
Nombre d'Installations 668
Version Actuelle 1.2.3
Dernière Mise à Jour 2020-05-02
Date de Publication 2020-05-02
Évaluation 3.67/5 Total 15 Évaluations
Développeur Volodya Shtenovych
Type de Paiement free
Site Web de l'Extension https://github.com/Leksyk/chrome-copy-link
URL de la Page d'Aide https://github.com/Leksyk/chrome-copy-link
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Link Copier",
    "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
    "version": "1.2.3",
    "background": {
        "persistent": false,
        "scripts": [
            "copyLink.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "Command+MacCtrl+C"
            },
            "description": "Copy Link as Rich Text"
        },
        "copy-as-plain": {
            "description": "Copy Link and Title as Plain Text"
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}