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
Eメール [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"
}