CodeView

Make Code View formater

CodeViewคืออะไร?

CodeView เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elvis Macak และคุณลักษณะหลักของมันคือ "Make Code View formater"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย CodeView ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Make a better code preview in chrome tab

using  https://code.google.com/p/google-code-prettify/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CodeView CodeView
ID lpmlapmjlppjjlfiajklndnakmoafcin
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/codeview/lpmlapmjlppjjlfiajklndnakmoafcin
คำอธิบาย Make Code View formater
ขนาดไฟล์ 98.22 KB
จำนวนการติดตั้ง 72
เวอร์ชันปัจจุบัน 0.8.0
อัปเดตครั้งล่าสุด 2013-12-01
วันที่เผยแพร่ 2013-12-01
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Elvis Macak
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "zepto.min.js",
                "page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "assets\/48.png",
        "default_title": "Make Code View formater"
    },
    "description": "Make Code View formater",
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "manifest_version": 2,
    "name": "CodeView",
    "permissions": [
        "background",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "run_prettify.js",
        "zepto.min.js",
        "pretty\/*"
    ],
    "version": "0.8.0"
}