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.”。
擴展截圖
下載JaSON擴展crx文件
下載JaSON擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | oealdlhfjifhgbmjnenhkgffglaibojf |
官方網址 | 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:\/\/*\/*" ] } |