CodeView

Make Code View formater

什么是CodeView?

CodeView是由Elvis Macak开发的Chrome扩展程序,该扩展的主要功能是“Make Code View formater”。

扩展截图

screenshot
screenshot

下载CodeView扩展crx文件

下载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"
}