SP Formatter

Customize your SharePoint Column, View or Form Layout Formatting JSON using a full-featured editor instead of the default one.

SP Formatter란 무엇입니까?

SP Formatter은(는) Sergei Sergeev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your SharePoint Column, View or Form Layout Formatting JSON using a full-featured editor instead of the default one."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

SP Formatter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        SP Formatter features: 

- Live Preview as you type (no need to click "Preview" button)
- Intellisense (suggestions) based on Column or View formatting schema, CSS styles, replaceable tokens (`@currentField`, list fields with `$` based on the context)
- JSON validation with error messages in the editor
- Help tooltips for JSON properties
- Color highlights
- Line numbers, brace matching, collapsible regions
- Hotkeys: search, replace, format document, go to line and others available for monaco-editor
- Easily switch between default and enhanced editor
- VSCode integration
- Full screen mode

Supported platforms: 

 - SharePoint Online
 - SharePoint 2019 (through a separate extension, read more https://github.com/pnp/sp-formatter/blob/master/sp2019/README.md)

PRIVACY POLICY
SP Formatter does not collect nor store any personal data.

CHANGELOG: 
https://github.com/pnp/sp-formatter/blob/master/web-extension/CHANGELOG.md                    

확장 프로그램 기본 정보

이름 SP Formatter SP Formatter
ID fmeihfaddhdkoogipahfcjlicglflkhg
공식 URL https://chromewebstore.google.com/detail/sp-formatter/fmeihfaddhdkoogipahfcjlicglflkhg
설명 Customize your SharePoint Column, View or Form Layout Formatting JSON using a full-featured editor instead of the default one.
파일 크기 2.03 MB
설치 횟수 2,809
현재 버전 0.1.4
최근 업데이트 2024-02-01
출시 날짜 2019-06-07
평점 5.00/5 총 4 개의 평점
개발자 Sergei Sergeev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pnp/sp-formatter
도움말 페이지 URL https://github.com/pnp/sp-formatter/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SP Formatter",
    "short_name": "SP Formatter",
    "homepage_url": "https:\/\/github.com\/pnp\/sp-formatter",
    "description": "Customize your SharePoint Column, View or Form Layout Formatting JSON using a full-featured editor instead of the default one.",
    "version": "0.1.4",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "dist\/background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*",
                "schema\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}