Allow Copy/Paste

An extension to permit copy and paste on sites that block this feature.

什么是Allow Copy/Paste?

Allow Copy/Paste是由Fraser Benjamin开发的Chrome扩展程序,该扩展的主要功能是“An extension to permit copy and paste on sites that block this feature.”。

扩展截图

screenshot
screenshot

下载Allow Copy/Paste扩展crx文件

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

扩展使用说明

                        Some websites block your ability to copy and paste text and content from them, this extension works to prevent these restrictions from being added.

There are two features to attempt to remove the restrictions available with this extension. You can navigate to the page you'd like to copy/paste from and click the extension icon in Chrome and then "Allow Copy/Paste". Generally this should work for most sites and allow you to carry on like normal. The extension will also store your preferences so you'll only need to do this once for each site.

However, if that doesn't work you can also open Chrome Developer Tools and select the "Allow Copy/Paste" tab which will then give you a button to reload the page and attempt to prevent the blocking script from being added. https://developer.chrome.com/docs/devtools/open                    

扩展基本信息

名称 Allow Copy/Paste Allow Copy/Paste
ID ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
官方URL https://chromewebstore.google.com/detail/allow-copypaste/ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
简介 An extension to permit copy and paste on sites that block this feature.
文件大小 29.9 KB
安装次数 3,367
当前版本 1.1.0
更新时间 2022-03-25
上架时间 2022-03-21
评分 5.00/5 共2次评分
开发者 Fraser Benjamin
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Allow Copy\/Paste",
    "description": "An extension to permit copy and paste on sites that block this feature.",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icons\/allow-copy-paste-logo-16.png",
        "48": "icons\/allow-copy-paste-logo-48.png",
        "128": "icons\/allow-copy-paste-logo-128.png",
        "256": "icons\/allow-copy-paste-logo-256.png",
        "512": "icons\/allow-copy-paste-logo-512.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/allow-copy-paste-logo-16.png",
            "48": "icons\/allow-copy-paste-logo-48.png",
            "128": "icons\/allow-copy-paste-logo-128.png",
            "256": "icons\/allow-copy-paste-logo-256.png",
            "512": "icons\/allow-copy-paste-logo-512.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ]
}