Improved URL copy
Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.
Improved URL copy là gì?
Improved URL copy là một tiện ích mở rộng Chrome được phát triển bởi Tahin Rahman, và tính năng chính của nó là "Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Improved URL copy
Tải xuống các tệp mở rộng Improved URL copy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Improved URL copy |
ID | nbkaobaododghmjhkjagellfdahgajlb |
URL Chính Thức | https://chromewebstore.google.com/detail/improved-url-copy/nbkaobaododghmjhkjagellfdahgajlb |
Mô tả | Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy. |
Kích Thước Tệp | 33.69 KB |
Số Lần Cài Đặt | 342 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2023-09-22 |
Ngày Phát Hành | 2021-09-28 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Tahin Rahman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tahins/copy-unicode-urls |
URL Trang Trợ Giúp | https://github.com/tahins/copy-unicode-urls |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |