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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में SP Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}