Tab Link Copier

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

Τι είναι το Tab Link Copier;

Το Tab Link Copier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Volodya Shtenovych, και η κύρια λειτουργία του είναι "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Tab Link Copier

Λήψη αρχείων επέκτασης Tab Link Copier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
Επίσημο URL https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
Περιγραφή Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Μέγεθος Αρχείου 19.26 KB
Αριθμός Εγκαταστάσεων 668
Τρέχουσα Έκδοση 1.2.3
Τελευταία Ενημέρωση 2020-05-02
Ημερομηνία Δημοσίευσης 2020-05-02
Αξιολόγηση 3.67/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Volodya Shtenovych
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Leksyk/chrome-copy-link
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Leksyk/chrome-copy-link
Υποστηριζόμενες Γλώσσες 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'"
}