Raw Code Formatter

Raw Code Formatter in the Browser

Raw Code Formatterとは何ですか?

Raw Code FormatterはTeo Patrașによって開発されたChromeの拡張機能で、その主な機能は「Raw Code Formatter in the Browser」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Raw Code Formatter拡張機能のCRXファイルをダウンロード

Raw Code Formatter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Raw Code Formatter in the Browser. Changes theme based on the OS Dark Mode. 

Supported modes:     

  ○ yaml
  ○ python
  ○ javascript
  ○ jsx
  ○ xml
  ○ markdown                    

拡張機能の基本情報

名前 Raw Code Formatter Raw Code Formatter
ID knfglfmkncmmlkmeniibncdeeafmjnfh
公式URL https://chromewebstore.google.com/detail/raw-code-formatter/knfglfmkncmmlkmeniibncdeeafmjnfh
説明 Raw Code Formatter in the Browser
ファイルサイズ 181 KB
インストール数 507
現在のバージョン 0.0.2
最終更新日 2020-03-26
公開日 2020-03-23
評価 4.67/5 合計 3 レビュー
開発者 Teo Patraș
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://github.com/teodorpatras/rawformatter/blob/master/privacy.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Raw Code Formatter",
    "version": "0.0.2",
    "description": "Raw Code Formatter in the Browser",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "config\/production.js",
            "js\/analytics.js",
            "js\/raw.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/rawformatter16.png",
        "32": "img\/rawformatter32.png",
        "48": "img\/rawformatter48.png",
        "128": "img\/rawformatter128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "codemirror\/codemirror.js",
                "codemirror\/addon\/fold\/foldcode.js",
                "codemirror\/addon\/fold\/indent-fold.js",
                "codemirror\/addon\/fold\/foldgutter.js",
                "codemirror\/addon\/fold\/brace-fold.js",
                "codemirror\/addon\/fold\/comment-fold.js",
                "codemirror\/addon\/fold\/markdown-fold.js",
                "codemirror\/addon\/fold\/xml-fold.js",
                "codemirror\/mode\/yaml.js",
                "codemirror\/mode\/python.js",
                "codemirror\/mode\/jsx.js",
                "codemirror\/mode\/javascript.js",
                "codemirror\/mode\/xml.js",
                "codemirror\/mode\/markdown.js",
                "codemirror\/addon\/scroll\/simplescrollbars.js",
                "js\/raw.js",
                "js\/content.js"
            ],
            "css": [
                "codemirror\/codemirror.css",
                "codemirror\/addon\/fold\/foldgutter.css",
                "codemirror\/theme\/neo.css",
                "codemirror\/theme\/material.css",
                "codemirror\/addon\/scroll\/scrollbars.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; connect-src https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "background",
        "contextMenus"
    ]
}