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
官方網址 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ș
電子郵箱 [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"
    ]
}