Tab Link Copier
Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Co je Tab Link Copier?
Tab Link Copier je rozšíření Chrome vyvinuté Volodya Shtenovych, a jeho hlavní funkcí je „Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tab Link Copier
Stáhněte si soubory rozšíření Tab Link Copier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Tab Link Copier |
ID | ijkpnaifgolhlcfhcfamddnlnfjpjaji |
Oficiální URL | https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji |
Popis | Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs |
Velikost souboru | 19.26 KB |
Počet instalací | 668 |
Aktuální Verze | 1.2.3 |
Poslední Aktualizace | 2020-05-02 |
Datum Vydání | 2020-05-02 |
Hodnocení | 3.67/5 Celkem 15 Hodnocení |
Vývojář | Volodya Shtenovych |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Leksyk/chrome-copy-link |
URL Stránky Nápovědy | https://github.com/Leksyk/chrome-copy-link |
Podporované Jazyky | 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'" } |