Copy Unicode URLs
Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode!
Copy Unicode URLsคืออะไร?
Copy Unicode URLs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ilyaigpetrov และคุณลักษณะหลักของมันคือ "Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Unicode URLs
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } } } |