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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jennifer.k.tam และคุณลักษณะหลักของมันคือ "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Snip

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
}