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文件

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