Code Snip

Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.

什么是Code Snip?

Code Snip是由jennifer.k.tam开发的Chrome扩展程序,该扩展的主要功能是“Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Code Snip扩展crx文件

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

扩展使用说明

                        Copy code from stackoverflow.com, github.com, and askubuntu.com to your clipboard, expediting the time it takes you to copy and test code.


Code Snip is a productivity tool that allows you to copy source code to your clipboard with the click of a button. 

Say goodbye to the days of manually highlighting desired code and right clicking to copy and paste or using your pressing CTRL + C and CTRL + V. Code Snip will copy code for you and the best part is that it's free!

Download it today at the Chrome Store.                    

扩展基本信息

名称 Code Snip Code Snip
ID loeopfggphfjeegjidkjbogidpbapold
官方URL https://chrome.google.com/webstore/detail/code-snip/loeopfggphfjeegjidkjbogidpbapold
简介 Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.
文件大小 31.89 KB
安装次数 399
当前版本 1.0
更新时间 2017-08-05
上架时间 2017-08-05
开发者 jennifer.k.tam
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Snip",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Code Snip",
        "default_popup": "overlay.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "css\/stackOverflow.css"
            ],
            "js": [
                "js\/stackOverflow.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ]
        },
        {
            "css": [
                "css\/github.css"
            ],
            "js": [
                "js\/github.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        },
        {
            "css": [
                "css\/ubuntu.css"
            ],
            "js": [
                "js\/ubuntu.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/askubuntu.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'"
}