Apiary Browser Extension
Apiary Browser Extension
What is Apiary Browser Extension?
Apiary Browser Extension is a Chrome extension developed by https://apiary.io, and its main feature is "Apiary Browser Extension".
Extension Screenshots
Download Apiary Browser Extension Extension CRX File
Download Apiary Browser Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is an Apiary Console request calling extension. It’s using the browser’s capabilities to talk to the target server, but it does not suffer from all the CORS limitations. More details are available on its Apiary Help site at https://help.apiary.io/tools/interactive-documentation/#console
Extension Basic Information
Name | Apiary Browser Extension |
ID | cboekbiaoabkhgjdclenjpipclabkdga |
Official URL | https://chromewebstore.google.com/detail/apiary-browser-extension/cboekbiaoabkhgjdclenjpipclabkdga |
Description | Apiary Browser Extension |
File Size | 78.19 KB |
Installation Count | 7,509 |
Current Version | 2.0.0 |
Last Updated | 2019-05-25 |
Publish Date | 2019-05-25 |
Developer | https://apiary.io |
[email protected] | |
Payment Type | free |
Extension Website | https://apiary.io |
Help Page URL | https://help.apiary.io |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Apiary Browser Extension", "short_name": "Apiary", "description": "Apiary Browser Extension", "version": "2.0.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_popup": "popup.html" }, "externally_connectable": { "matches": [ "*:\/\/localhost:*\/*", "*:\/\/*.apiary.test:*\/*", "*:\/\/*.apiary.io\/*", "*:\/\/*.apiary-staging.in\/*", "*:\/\/*.apicurious.com\/*" ] }, "background": { "scripts": [ "build\/extension.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/localhost\/*", "*:\/\/*.apiary.io\/*", "*:\/\/*.apiary-staging.in\/*", "*:\/\/*.apicurious.com\/*" ], "js": [ "build\/detect.js" ] } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "icon16.png" ] } |