Force Copy

Force Copy Everything

¿Qué es Force Copy?

Force Copy es una extensión de Chrome desarrollada por Breeze, y su función principal es "Force Copy Everything".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Force Copy

Descarga archivos de extensión Force Copy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Force Copy Force Copy
ID cceclgeciefpanebkfkogecbjjchmico
URL Oficial https://chromewebstore.google.com/detail/force-copy/cceclgeciefpanebkfkogecbjjchmico
Descripción Force Copy Everything
Tamaño del Archivo 170 KB
Cantidad de Instalaciones 505
Versión Actual 1.0.6
Última Actualización 2024-01-22
Fecha de Publicación 2023-10-08
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Breeze
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/WindrunnerMax/TKScript/tree/master/packages/force-copy/README.md
URL de la Página de Ayuda https://github.com/WindrunnerMax/TKScript/issues
Idiomas Soportados 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"
}