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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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ș
이메일 [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"
    ]
}