Easy Copy

Copy anywhere

Easy Copyとは何ですか?

Easy CopyはLoryHuangによって開発されたChromeの拡張機能で、その主な機能は「Copy anywhere」です。

拡張機能のスクリーンショット

screenshot
screenshot

Easy Copy拡張機能のCRXファイルをダウンロード

Easy Copy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        简单地解除复制限制,让用户随意复制文本,不受网站限制                    

拡張機能の基本情報

名前 Easy Copy Easy Copy
ID elcaegdandcagckkngpjelhgeakcmeif
公式URL https://chromewebstore.google.com/detail/easy-copy/elcaegdandcagckkngpjelhgeakcmeif
説明 Copy anywhere
ファイルサイズ 167 KB
インストール数 402
現在のバージョン 0.1.0
最終更新日 2020-09-03
公開日 2020-09-02
評価 5.00/5 合計 2 レビュー
開発者 LoryHuang
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/hzmming/easy-copy
ヘルプページのURL https://github.com/hzmming/easy-copy
対応言語 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Copy",
    "description": "Copy anywhere",
    "author": "LoryHuang && AmadeusXie",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_title": "Easy Copy",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16-gray.png",
            "32": "icons\/32-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injects.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}