Copy Unicode URLs
Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode!
什麼是Copy Unicode URLs?
Copy Unicode URLs是由ilyaigpetrov開發的Chrome擴展程式,該擴展的主要功能是“Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode!”。
擴展截圖
下載Copy Unicode URLs擴展crx文件
下載Copy Unicode URLs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Annoyed by all the converting of unicode chars in urls while copy-pasting? Copy urls with this extension to preserve unicode untouched. No more percent-encoding, no more punycode. Use Alt+U shortcut or click the icon to copy URL from address bar. Right-click extension icon to access options. Open source. Donate: https://ilyaigpetrov.page.link/copy-unicode-urls-donate "Ю" is a Russian letter for the first letter of "Юникод" (Unicode), it's pronounced like "U" in "Unicode".
擴展基本資訊
名稱 | Copy Unicode URLs |
ID | fnbbfiapefhkicjhecnoepbijhanpkjp |
官方網址 | https://chromewebstore.google.com/detail/copy-unicode-urls/fnbbfiapefhkicjhecnoepbijhanpkjp |
簡介 | Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode! |
檔案大小 | 27.87 KB |
安裝次數 | 8,861 |
目前版本 | 0.0.21 |
更新時間 | 2023-08-17 |
上架時間 | 2020-06-07 |
評分 | 4.53/5 共 38 次評分 |
開發者 | ilyaigpetrov |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/ilyaigpetrov/copy-unicode-urls |
說明頁面URL | https://github.com/ilyaigpetrov/copy-unicode-urls/issues |
支援的語言 | en,ru |
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\/ilyaigpetrov\/copy-unicode-urls", "default_locale": "en", "version": "0.0.21", "icons": { "128": "icons\/u-red-128.png" }, "author": "[email protected]", "permissions": [ "activeTab", "contextMenus", "storage", "clipboardWrite" ], "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" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+U" } } } } |