Quick URL copy
Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
Wat is Quick URL copy?
Quick URL copy is een Chrome-extensie ontwikkeld door Mikhail Aksenov, en de belangrijkste functie is "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)".
Extensie Screenshots
Download het CRX-bestand van de extensie Quick URL copy
Download Quick URL copy-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
Simple extension which copied to clipboard title and URL current page. For Atlassian JIRA issue number, description and link. Just press Ctrl-Alt-C / Control-Command-C for Mac Add some defaults for YouTube and Trello.
Basisinformatie over de Extensie
Naam | Quick URL copy |
ID | khfjmphfblpcbnmlamiclchbdndleabd |
Officiële URL | https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd |
Beschrijving | Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C) |
Bestandsgrootte | 14.52 KB |
Aantal Installaties | 100 |
Huidige Versie | Make title useful again for izbirkom.ru |
Laatst Bijgewerkt | 2022-02-16 |
Publicatiedatum | 2020-03-28 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Mikhail Aksenov |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick URL copy", "version": "1.5.8", "version_name": "Make title useful again for izbirkom.ru", "manifest_version": 2, "description": "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)", "short_name": "Copy page info", "browser_action": { "default_icon": "icon128.png" }, "homepage_url": "https:\/\/github.com\/xeningem\/quick_url_copy", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/\/*:\/*\/*" ], "js": [ "getText.js", "content.js" ] } ], "background": { "persistent": false, "page": "background.html" }, "options_page": "options.html", "permissions": [ "activeTab", "clipboardWrite", "storage" ] } |