Send to Airtable
Send information about the current page to Airtable
Τι είναι το Send to Airtable;
Το Send to Airtable είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον borja.eu, και η κύρια λειτουργία του είναι "Send information about the current page to Airtable".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Send to Airtable
Λήψη αρχείων επέκτασης Send to Airtable σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Create Airtable entries from any website. Use the title, description, url and select and image from the current web site to be sent to airtable. Several different target tables can be configured for submission. Configuration: It is required to specify the airtable API key in order to make the extension work. The api key can be found in https://airtable.com/account. In order to configure the extension to send the information to and AirTable base. Go to https://airtable.com/api select on base and click in the extension icon. From the list of available tables choose one to generate the configuration for it. In the extension options this configuration can be updated. There is more details in the options page for the extension. Usage: In any website click the send to AirTable icon. Select the target form, modify the form contents as required and click the save button to send the information to the target table.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Send to Airtable |
ID | gnlfpcbhdipbidmkchkjlleppeijclbj |
Επίσημο URL | https://chromewebstore.google.com/detail/send-to-airtable/gnlfpcbhdipbidmkchkjlleppeijclbj |
Περιγραφή | Send information about the current page to Airtable |
Μέγεθος Αρχείου | 625 KB |
Αριθμός Εγκαταστάσεων | 2,496 |
Τρέχουσα Έκδοση | 2.1.5 |
Τελευταία Ενημέρωση | 2021-01-04 |
Ημερομηνία Δημοσίευσης | 2019-03-08 |
Αξιολόγηση | 3.85/5 Συνολικά 20 Αξιολογήσεις |
Προγραμματιστής | borja.eu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Send to Airtable", "description": "Send information about the current page to Airtable", "version": "2.1.5", "browser_action": { "default_icon": "img\/icon.png", "default_title": "Save to airtable" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-2.2.0.min.js", "js\/html2canvas.min.js", "notes.js" ], "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "web_accessible_resources": [ "popup.html", "popup_add.html", "api.js" ], "permissions": [ "storage", "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |