Coda Browser Extension
Coda Browser Extension
What is Coda Browser Extension?
Coda Browser Extension is a Chrome extension developed by https://coda.io, and its main feature is "Coda Browser Extension".
Extension Screenshots
Download Coda Browser Extension Extension CRX File
Download Coda Browser Extension 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
Coda for Google Chrome provides a more integrated browser experience. As of today, you can enable having one tab per doc, search from the address bar, or bookmark any webpage to any Coda table. For more info, check out: https://help.coda.io/faq/what-is-the-coda-chrome-extension
Extension Basic Information
Name | Coda Browser Extension |
ID | cdgkmagmdldlpiglliebaajdpdkigcbi |
Official URL | https://chromewebstore.google.com/detail/coda-browser-extension/cdgkmagmdldlpiglliebaajdpdkigcbi |
Description | Coda Browser Extension |
File Size | 152 KB |
Installation Count | 11,773 |
Current Version | 2.0.0 |
Last Updated | 2021-04-01 |
Publish Date | 2020-04-17 |
Rating | 4.77/5 Total 13 Ratings |
Developer | https://coda.io |
[email protected] | |
Payment Type | free |
Extension Website | https://coda.io/ |
Help Page URL | https://help.coda.io/faq/what-is-the-coda-chrome-extension |
Privacy Policy Page URL | https://coda.io/trust/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coda Browser Extension", "short_name": "Coda", "description": "Coda Browser Extension", "version": "2.0.0", "icons": { "256": "assets\/icon.png", "128": "assets\/icon-128.png", "16": "assets\/icon-128.png" }, "background": { "matches": [ "*:\/\/*.coda.io\/*", "*:\/\/coda.io\/*" ], "scripts": [ "js\/vendor.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.coda.io\/*", "*:\/\/coda.io\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ] } ], "browser_action": { "default_icon": "assets\/icon.png", "default_title": "View your docs", "default_popup": "popup.html" }, "omnibox": { "keyword": "coda" }, "permissions": [ "cookies", "notifications", "storage", "tabs", "webNavigation", "webRequest", "webRequestBlocking", "*:\/\/*.coda.io\/", "*:\/\/coda.io\/" ] } |