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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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