Tab Link Copier
Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Wat is Tab Link Copier?
Tab Link Copier is een Chrome-extensie ontwikkeld door Volodya Shtenovych, en de belangrijkste functie is "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Link Copier
Download Tab Link Copier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Tab Link Copier |
ID | ijkpnaifgolhlcfhcfamddnlnfjpjaji |
Officiële URL | https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji |
Beschrijving | Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs |
Bestandsgrootte | 19.26 KB |
Aantal Installaties | 668 |
Huidige Versie | 1.2.3 |
Laatst Bijgewerkt | 2020-05-02 |
Publicatiedatum | 2020-05-02 |
Beoordeling | 3.67/5 Totaal 15 Beoordelingen |
Ontwikkelaar | Volodya Shtenovych |
Betalingswijze | free |
Extensiewebsite | https://github.com/Leksyk/chrome-copy-link |
Help Pagina-URL | https://github.com/Leksyk/chrome-copy-link |
Ondersteunde Talen | 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'" } |