JaSON

A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses.

JaSON란 무엇입니까?

JaSON은(는) Shane Bell에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Great for testing and debugging JSON and XML APIs, RESTful APIs, GraphQL APIs, web services, web applications and more.

Cookie support:
Automatically sends cookies from Chrome. This is extremely handy for APIs which require authentication. Simply authenticate via your browser as normal and JaSON will send cookies for requests which match.

HTTP methods:
GET, POST, PUT, PATCH, DELETE, HEAD, and OPTIONS

Dark/light theme:
Change the colour theme to suit your work environment.

Request history:
Keeps request history with full text search. Individual history items can be deleted, or marked as a "favourite" for easy access. History from previous versions of JaSON will be automatically migrated. Stores history in IndexedDB for improved performance.

Formatted input/output:
Provides an IDE like experience when editing request body and headers. Automatically formats request/response body syntax and colour based on content type.

Content type:
Supports JSON, XML, and form encoded data by default. Additional content types can be used by setting a custom content type header.

New and improved:
Completely re-written, new styling, layout, colours, additional features and improved performance.

100% open source
Source code is available from GitHub.

Privacy policy
https://github.com/shanebell/JaSON/blob/master/privacy-policy.md                    

확장 프로그램 기본 정보

이름 JaSON JaSON
ID oealdlhfjifhgbmjnenhkgffglaibojf
공식 URL https://chromewebstore.google.com/detail/jason/oealdlhfjifhgbmjnenhkgffglaibojf
설명 A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses.
파일 크기 1.8 MB
설치 횟수 8,717
현재 버전 5.0.25
최근 업데이트 2021-04-23
출시 날짜 2020-06-28
평점 4.34/5 총 38 개의 평점
개발자 Shane Bell
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://shanebell.github.io/JaSON/
도움말 페이지 URL https://github.com/shanebell/JaSON/issues
개인정보 보호 정책 페이지 URL https://github.com/shanebell/JaSON/blob/master/privacy-policy.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JaSON",
    "version": "5.0.25",
    "manifest_version": 2,
    "description": "A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "JaSON",
        "default_icon": {
            "128": "jason-128x128.png",
            "256": "jason-256x256.png",
            "512": "jason-256x256.png"
        }
    },
    "icons": {
        "128": "jason-128x128.png",
        "256": "jason-256x256.png",
        "512": "jason-256x256.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}