anti-copy-pasta

Disables text selection on stackoverflow.com

什么是anti-copy-pasta?

anti-copy-pasta是由Travis Paul开发的Chrome扩展程序,该扩展的主要功能是“Disables text selection on stackoverflow.com”。

扩展截图

screenshot
screenshot

下载anti-copy-pasta扩展crx文件

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

扩展使用说明

                        Installing this extension in your Chrome browser (or perhaps a lazy co-worker's...) will prevent you from selecting (and therefore also copy+pasting) any text from stackoverflow.com.

Enjoy :)                    

扩展基本信息

名称 anti-copy-pasta anti-copy-pasta
ID bpmjllnllinemdobdpbphdnoaanjpkkb
官方URL https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb
简介 Disables text selection on stackoverflow.com
文件大小 8.21 KB
安装次数 66
当前版本 1.0.1
更新时间 2016-06-02
上架时间 2016-06-01
评分 5.00/5 共6次评分
开发者 Travis Paul
付费类型 free
扩展官网 https://github.com/TravisPaul/crx-anti-copy-pasta
帮助页面URL https://github.com/TravisPaul/crx-anti-copy-pasta/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "http:\/\/stackoverflow.com\/*",
        "https:\/\/stackoverflow.com\/*"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/stackoverflow.com\/*",
                "https:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}