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". 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
}
} | |