AT Plus

Enhancements for your Airtables.

What is AT Plus?

AT Plus is a Chrome extension developed by https://mikedeltito.com, and its main feature is "Enhancements for your Airtables.".

Extension Screenshots

screenshot

Download AT Plus Extension CRX File

Download AT Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Adds the following features to Airtable:

* Makes the expanded cell popup resizable, which can help with readability in long text fields.
* Adds a Markdown preview function! You can add/edit Markdown in an expanded rich-text field and toggle a preview. The preview can be also be resized.                    

Extension Basic Information

Name AT Plus AT Plus
ID iedchkfcjehmdfkjadelkgnbfapoolid
Official URL https://chromewebstore.google.com/detail/at-plus/iedchkfcjehmdfkjadelkgnbfapoolid
Description Enhancements for your Airtables.
File Size 36.97 KB
Installation Count 19
Current Version 0.0.4
Last Updated 2018-05-21
Publish Date 2018-05-21
Developer https://mikedeltito.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airtable.com\/*"
            ],
            "css": [
                "css\/expanded-resizable.css",
                "css\/markdown-viewer.css"
            ],
            "js": [
                "vendor\/js\/marked.js",
                "scripts\/expanded-resizable.js",
                "scripts\/markdown-viewer.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}