Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Airtable Rich Text Editor क्या है?
Airtable Rich Text Editor savetonotion.so द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Airtable Rich Text Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list - image - code block Completely free, it allows you to transform your Airtable Workspace to a performant Task Manager.
एक्सटेंशन की मूल जानकारी
नाम | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
आधिकारिक URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
विवरण | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
फ़ाइल का आकार | 163 KB |
स्थापना संख्या | 75 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2022-03-09 |
प्रकाशन तिथि | 2022-03-01 |
डेवलपर | savetonotion.so |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Airtable Rich Text Editor", "version": "0.0.3", "manifest_version": 3, "description": "", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.airtable.com\/*" ], "css": [], "js": [ "injectScript.js" ] } ], "permissions": [], "host_permissions": [ "https:\/\/*.airtable.com\/app*" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [], "extension_ids": [] } ], "background": { "service_worker": "background.js" }, "browser_action": { "default_popup": "popup.html", "default_title": "Airtable Rich Text Editor" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |