Easy Copy

Copy anywhere

What is Easy Copy?

Easy Copy is a Chrome extension developed by LoryHuang, and its main feature is "Copy anywhere".

Extension Screenshots

screenshot
screenshot

Download Easy Copy Extension CRX File

Download Easy Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Easy Copy Easy Copy
ID elcaegdandcagckkngpjelhgeakcmeif
Official URL https://chromewebstore.google.com/detail/easy-copy/elcaegdandcagckkngpjelhgeakcmeif
Description Copy anywhere
File Size 167 KB
Installation Count 402
Current Version 0.1.0
Last Updated 2020-09-03
Publish Date 2020-09-02
Rating 5.00/5 Total 2 Ratings
Developer LoryHuang
Email [email protected]
Payment Type free
Extension Website https://github.com/hzmming/easy-copy
Help Page URL https://github.com/hzmming/easy-copy
Supported Languages 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"
    ]
}