Enable Copy/Paste

Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.

Enable Copy/Pasteとは何ですか?

Enable Copy/Pasteはdominicfallowsによって開発されたChromeの拡張機能で、その主な機能は「Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This simple extension enables you to use things like complex passwords and paste them directly into password fields on sites that prevent this needlessly.                    

拡張機能の基本情報

名前 Enable Copy/Paste Enable Copy/Paste
ID leghnagnephbfcencnbonkbdimeokhem
公式URL https://chromewebstore.google.com/detail/enable-copypaste/leghnagnephbfcencnbonkbdimeokhem
説明 Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.
ファイルサイズ 12.09 KB
インストール数 2,230
現在のバージョン 1.0
最終更新日 2021-11-28
公開日 2021-11-27
開発者 dominicfallows
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dominicfallows/enable-copy-paste-chrome-extension
ヘルプページのURL https://github.com/dominicfallows/enable-copy-paste-chrome-extension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy\/Paste",
    "description": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it.",
    "version": "1.0",
    "author": "Dominic Fallows",
    "homepage_url": "https:\/\/github.com\/dominicfallows\/enable-copy-paste-chrome-extension",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}