Apiary Browser Extension
Apiary Browser Extension
Wat is Apiary Browser Extension?
Apiary Browser Extension is een Chrome-extensie ontwikkeld door https://apiary.io, en de belangrijkste functie is "Apiary Browser Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Apiary Browser Extension
Download Apiary Browser Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Apiary Browser Extension |
ID | cboekbiaoabkhgjdclenjpipclabkdga |
Officiële URL | https://chromewebstore.google.com/detail/apiary-browser-extension/cboekbiaoabkhgjdclenjpipclabkdga |
Beschrijving | Apiary Browser Extension |
Bestandsgrootte | 78.19 KB |
Aantal Installaties | 7,509 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2019-05-25 |
Publicatiedatum | 2019-05-25 |
Ontwikkelaar | https://apiary.io |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://apiary.io |
Help Pagina-URL | https://help.apiary.io |
Ondersteunde Talen | 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" ] } |