Improved URL copy
Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.
Improved URL copyとは何ですか?
Improved URL copyはTahin Rahmanによって開発されたChromeの拡張機能で、その主な機能は「Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.」です。
拡張機能のスクリーンショット
Improved URL copy拡張機能のCRXファイルをダウンロード
Improved URL copy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Improved URL copy |
ID | nbkaobaododghmjhkjagellfdahgajlb |
公式URL | https://chromewebstore.google.com/detail/improved-url-copy/nbkaobaododghmjhkjagellfdahgajlb |
説明 | Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy. |
ファイルサイズ | 33.69 KB |
インストール数 | 342 |
現在のバージョン | 0.0.2 |
最終更新日 | 2023-09-22 |
公開日 | 2021-09-28 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Tahin Rahman |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tahins/copy-unicode-urls |
ヘルプページのURL | https://github.com/tahins/copy-unicode-urls |
対応言語 | 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" } } } |