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

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Improved URL copy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
        }
    }
}