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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Send to Airtable 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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'"
}