Improved URL copy
Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.
Cos'è Improved URL copy?
Improved URL copy è un'estensione di Chrome sviluppata da Tahin Rahman, e la sua funzione principale è "Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Improved URL copy
Scarica i file di estensione Improved URL copy 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
Copy unicode URLs with the most flexibility. Features: - Copy unicode URLs - Copy URL with title - Copy as linked title - Copy as markdown text - Keyboard shortcut - Copy link to a highlighted text of a page
Informazioni di Base sull'Estensione
Nome | Improved URL copy |
ID | nbkaobaododghmjhkjagellfdahgajlb |
URL Ufficiale | https://chromewebstore.google.com/detail/improved-url-copy/nbkaobaododghmjhkjagellfdahgajlb |
Descrizione | Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy. |
Dimensione del File | 33.69 KB |
Conteggio Installazioni | 342 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2023-09-22 |
Data di Pubblicazione | 2021-09-28 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Tahin Rahman |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tahins/copy-unicode-urls |
URL della Pagina di Aiuto | https://github.com/tahins/copy-unicode-urls |
Lingue Supportate | en,bn |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/tahins\/copy-unicode-urls", "default_locale": "en", "version": "0.0.2", "icons": { "128": "icons\/u-red-128.png" }, "author": "[email protected]", "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "persistent": true, "page": ".\/bg.html" }, "options_page": ".\/pages\/options\/index.html", "options_ui": { "chrome_style": true, "page": ".\/pages\/options\/index.html" }, "browser_action": { "default_title": "__MSG_iconHint__", "default_icon": ".\/icons\/u-red-128.png", "default_popup": ".\/pages\/popup\/index.html" }, "commands": { "copy-url": { "description": "Copy URL.", "suggested_key": "Alt+Shift+U" }, "copy-url-with-title": { "description": "Copy URL with title.", "suggested_key": "Alt+Shift+T" }, "copy-url-linked-title": { "description": "Copy URL as linked title.", "suggested_key": "Alt+Shift+L" }, "copy-url-markdown-text": { "description": "Copy URL as markdown text.", "suggested_key": "Alt+Shift+M" } } } |