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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sergei Sergeev และคุณลักษณะหลักของมันคือ "Customize your SharePoint Column, View or Form Layout Formatting JSON using a full-featured editor instead of the default one."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SP Formatter

ดาวน์โหลดไฟล์ส่วนขยาย SP Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
                ""
            ]
        }
    ]
}