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
Eメール [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"
}