SP REST JSON

Modifies request header for SharePoint REST API calls to get JSON instead of XML. For best results you'll need a JSON viewer Add-on.

SP REST JSON란 무엇입니까?

SP REST JSON은(는) Deschi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Modifies request header for SharePoint REST API calls to get JSON instead of XML. For best results you'll need a JSON viewer Add-on."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Once a tab is active, the current URL is matched against the following strings:
• /_api/web/
• /_api/site/
• /_api/sp.
• /_api/search
• /_vti_bin/ListData.svc


At a match the accept property in the request header is changed to 'application/json;odata=verbose' per default.

Global Options
• Add or change SharePoint URL filters
• Set the accept header per URL filter

In the Global options the following options can be chosen:
• application/json;odata=verbose
• application/json;odata=minimalmetadata
• application/json;odata=nometadata
• text/xml

Changelog:
Version 1.4.0
• Add option to set font-size for JSON Viewer.

Version 1.3.1
Bugfix
• The SchemaXml property of a list wasn't loaded correctly                    

확장 프로그램 기본 정보

이름 SP REST JSON SP REST JSON
ID kcdolhjbipnfgefpjaopfbjbannphidh
공식 URL https://chromewebstore.google.com/detail/sp-rest-json/kcdolhjbipnfgefpjaopfbjbannphidh
설명 Modifies request header for SharePoint REST API calls to get JSON instead of XML. For best results you'll need a JSON viewer Add-on.
파일 크기 64.89 KB
설치 횟수 1,425
현재 버전 1.4.0
최근 업데이트 2021-01-26
출시 날짜 2020-01-29
평점 5.00/5 총 2 개의 평점
개발자 Deschi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ddesch/SP-REST-JSON
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Modifies request header for SharePoint REST API calls to get JSON instead of XML. For best results you'll need a JSON viewer Add-on.",
    "manifest_version": 2,
    "name": "SP REST JSON",
    "short_name": "SP REST JSON",
    "version": "1.4.0",
    "author": "Daniel Desch",
    "homepage_url": "https:\/\/github.com\/ddesch\/SP-REST-JSON\/tree\/master\/",
    "icons": {
        "16": "icons\/16\/active.png",
        "32": "icons\/32\/active.png",
        "48": "icons\/48\/active.png",
        "64": "icons\/64\/active.png",
        "128": "icons\/128\/active.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16\/inactive.png",
            "32": "icons\/32\/inactive.png",
            "48": "icons\/48\/inactive.png",
            "64": "icons\/64\/inactive.png",
            "128": "icons\/128\/inactive.png"
        },
        "default_popup": "popup\/tabOptions.html"
    },
    "background": {
        "scripts": [
            "SPRESTJSON.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "JSONViewer\/json-viewer.css"
            ],
            "js": [
                "JSONViewer\/json-viewer.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "activeTab",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{7284ef85-567a-43f4-ab24-b07dabe8de7e}",
            "strict_min_version": "68.0"
        }
    }
}