Apiary Browser Extension
Apiary Browser Extension
Hvad er Apiary Browser Extension?
Apiary Browser Extension er en Chrome-udvidelse udviklet af https://apiary.io, og dens hovedfunktion er "Apiary Browser Extension".
Udvidelsesskærmbilleder
Download Apiary Browser Extension-udvidelses-CRX-fil
Download Apiary Browser Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Apiary Browser Extension |
ID | cboekbiaoabkhgjdclenjpipclabkdga |
Officiel URL | https://chromewebstore.google.com/detail/apiary-browser-extension/cboekbiaoabkhgjdclenjpipclabkdga |
Beskrivelse | Apiary Browser Extension |
Filstørrelse | 78.19 KB |
Antal Installationer | 7,509 |
Nuværende Version | 2.0.0 |
Senest Opdateret | 2019-05-25 |
Udgivelsesdato | 2019-05-25 |
Udvikler | https://apiary.io |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://apiary.io |
Hjælpeside-URL | https://help.apiary.io |
Understøttede Sprog | 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" ] } |