CodeView

Make Code View formater

What is CodeView?

CodeView is a Chrome extension developed by Elvis Macak, and its main feature is "Make Code View formater".

Extension Screenshots

screenshot
screenshot

Download CodeView Extension CRX File

Download CodeView extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Make a better code preview in chrome tab

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

Extension Basic Information

Name CodeView CodeView
ID lpmlapmjlppjjlfiajklndnakmoafcin
Official URL https://chrome.google.com/webstore/detail/codeview/lpmlapmjlppjjlfiajklndnakmoafcin
Description Make Code View formater
File Size 98.22 KB
Installation Count 72
Current Version 0.8.0
Last Updated 2013-12-01
Publish Date 2013-12-01
Rating 3.33/5 Total 3 Ratings
Developer Elvis Macak
Email [email protected]
Payment Type free
Supported Languages 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"
}