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 |
公式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 |
Eメール | [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:\/\/*\/*" ] } |