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!"입니다.

확장 프로그램 스크린샷

screenshot

Copy Unicode URLs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            }
        }
    }
}