CopyHacker

GitHub: https://github.com/leconio/hackcopytail

什麼是CopyHacker?

CopyHacker是由spawnlau開發的Chrome擴展程式,該擴展的主要功能是“GitHub: https://github.com/leconio/hackcopytail”。

擴展截圖

screenshot

下載CopyHacker擴展crx文件

下載CopyHacker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Unauthorize copying of code and text that is carried on certain websites to normalize the copy.
It can not only help you to remove those nasty little tails, but basically everything you can select with the mouse can be copied.

If you like, please star it on GitHub!

解除在某些网站上复制代码、文字时候携带的版权信息,让复制正常化。
它不仅仅能帮助你删除那些讨厌的小尾巴(CSDN,简书,360doc等),只要能用鼠标框选的东西基本上都可以复制。

Release:
v1.2 Fix space character problem,(Like,\u00A0(office) \u3000(Full-width))
修复空格字符问题,比如office用的空格,或者全角                    

擴展基本資訊

名稱 CopyHacker CopyHacker
ID eenbadnbcopcaphfckjffiffjnfgembm
官方網址 https://chrome.google.com/webstore/detail/copyhacker/eenbadnbcopcaphfckjffiffjnfgembm
簡介 GitHub: https://github.com/leconio/hackcopytail
檔案大小 8.48 KB
安裝次數 121
目前版本 1.2
更新時間 2018-10-17
上架時間 2018-10-17
評分 5.00/5 共 3 次評分
開發者 spawnlau
付費類型 free
支援的語言 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CopyHacker",
    "version": "1.2",
    "description": "GitHub: https:\/\/github.com\/leconio\/hackcopytail",
    "icons": {
        "128": "128icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "src\/copy_hacker.js"
            ]
        },
        {
            "matches": [
                "*:\/\/blog.csdn.net\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/click_hacker.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "src\/manager.html"
}