Tab Link Copier
Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Cos'è Tab Link Copier?
Tab Link Copier è un'estensione di Chrome sviluppata da Volodya Shtenovych, e la sua funzione principale è "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Link Copier
Scarica i file di estensione Tab Link Copier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ijkpnaifgolhlcfhcfamddnlnfjpjaji |
| URL Ufficiale | https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji |
| Descrizione | Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs |
| Dimensione del File | 19.26 KB |
| Conteggio Installazioni | 668 |
| Versione Corrente | 1.2.3 |
| Ultimo Aggiornamento | 2020-05-02 |
| Data di Pubblicazione | 2020-05-02 |
| Valutazione | 3.67/5 Totale 15 Valutazioni |
| Sviluppatore | Volodya Shtenovych |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Leksyk/chrome-copy-link |
| URL della Pagina di Aiuto | https://github.com/Leksyk/chrome-copy-link |
| Lingue Supportate | 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'"
} | |