Send to Airtable
Send information about the current page to Airtable
什麼是Send to Airtable?
Send to Airtable是由borja.eu開發的Chrome擴展程式,該擴展的主要功能是“Send information about the current page to Airtable”。
擴展截圖
下載Send to Airtable擴展crx文件
下載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 |
官方網址 | 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'" } |