API Spots
APIs for Humans
Τι είναι το API Spots;
Το API Spots είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://apispots.github.io, και η κύρια λειτουργία του είναι "APIs for Humans".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης API Spots
Λήψη αρχείων επέκτασης API Spots σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A Collection Of Human Friendly API Tools. The API Spots extension is a collection of tools for anyone interested in discovering, exploring and interacting with APIs without the need for a technology background. On the modern web APIs are the driving force of the Internet and even if you are not a developer you can still have access to important data and resources. Built entirely on top of open source technologies and specifications. Following the lead of top technology experts and supporting the open source community efforts. The API Spots project is leveraging widely adopted industry standards like the Open API specification ensuring interoperability with other tools. What you can do with the extension: - Load and visualize an Open API (f.k.a. Swagger) specification - Detect and get notifications on valid Open API documents as you browse the web - Visualize and explore an API using a graph tool - List API operations and endpoints - List API data models - Interact with an API through data stories - Browse public Open API catalogues and discover new APIs - Browse Open API collections through APIS.json specification
Βασικές Πληροφορίες Επέκτασης
Όνομα | API Spots |
ID | kaggdmjacnelneophkagkdljffninnpd |
Επίσημο URL | https://chromewebstore.google.com/detail/api-spots/kaggdmjacnelneophkagkdljffninnpd |
Περιγραφή | APIs for Humans |
Μέγεθος Αρχείου | 5.88 MB |
Αριθμός Εγκαταστάσεων | 500 |
Τρέχουσα Έκδοση | 2.4.4 |
Τελευταία Ενημέρωση | 2022-07-06 |
Ημερομηνία Δημοσίευσης | 2019-03-08 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://apispots.github.io |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://apispots.github.io |
Διεύθυνση URL της Σελίδας Βοήθειας | https://apispots.github.io/faq |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "API Spots", "short_name": "apispots", "description": "APIs for Humans", "version": "2.4.4", "author": "Chris Spiliotopoulos", "homepage_url": "https:\/\/apispots.github.io", "icons": { "128": "assets\/images\/logos\/logo-128.png", "64": "assets\/images\/logos\/logo-64.png", "16": "assets\/images\/logos\/logo-16.png" }, "background": { "scripts": [ "dist\/background.bundle.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "dist\/content.bundle.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "notifications", "storage" ], "browser_action": { "default_title": "API Spots", "default_icon": "assets\/images\/logos\/logo-128.png" }, "web_accessible_resources": [ "data\/*.js" ] } |