Force Copy

Force Copy Everything

什么是Force Copy?

Force Copy是由Breeze开发的Chrome扩展程序,该扩展的主要功能是“Force Copy Everything”。

扩展截图

screenshot

下载Force Copy扩展crx文件

下载Force Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Force Copy allows you to lift copy restrictions, keyboard restrictions, and right-click menu restrictions on Web pages.

All functions of the extension are turned off by default. When you need it, click the extension program and select the corresponding module to start it.

⭐ Start means that the domain name remains open. Even if the page is closed, it will still remain started the next time it is opened.
⭐ Once means that it will only take effect in the current Tab page. After closing the Tab page, it will remain closed the next time it is opened. Note that refreshing the page will not turn off the function. This is useful in many situations, especially in rich text editor websites.

Open source address: https://github.com/WindrunnerMax/TKScript.                    

扩展基本信息

名称 Force Copy Force Copy
ID cceclgeciefpanebkfkogecbjjchmico
官方URL https://chromewebstore.google.com/detail/force-copy/cceclgeciefpanebkfkogecbjjchmico
简介 Force Copy Everything
文件大小 170 KB
安装次数 505
当前版本 1.0.6
更新时间 2024-01-22
上架时间 2023-10-08
评分 5.00/5 共3次评分
开发者 Breeze
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/WindrunnerMax/TKScript/tree/master/packages/force-copy/README.md
帮助页面URL https://github.com/WindrunnerMax/TKScript/issues
支持的语言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Force Copy",
    "version": "1.0.6",
    "description": "Force Copy Everything",
    "default_locale": "en",
    "icons": {
        "32": ".\/static\/favicon.128.png",
        "96": ".\/static\/favicon.128.png",
        "128": ".\/static\/favicon.128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": ".\/static\/favicon.128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/*",
                "eQnCrNJRXq.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "minimum_chrome_version": "88.0"
}