Coda Browser Extension
Coda Browser Extension
什么是Coda Browser Extension?
Coda Browser Extension是由https://coda.io开发的Chrome扩展程序,该扩展的主要功能是“Coda Browser Extension”。
扩展截图
下载Coda Browser Extension扩展crx文件
下载Coda Browser Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Coda Browser Extension |
ID | cdgkmagmdldlpiglliebaajdpdkigcbi |
官方URL | https://chromewebstore.google.com/detail/coda-browser-extension/cdgkmagmdldlpiglliebaajdpdkigcbi |
简介 | Coda Browser Extension |
文件大小 | 152 KB |
安装次数 | 11,773 |
当前版本 | 2.0.0 |
更新时间 | 2021-04-01 |
上架时间 | 2020-04-17 |
评分 | 4.77/5 共13次评分 |
开发者 | https://coda.io |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://coda.io/ |
帮助页面URL | https://help.coda.io/faq/what-is-the-coda-chrome-extension |
隐私政策页面URL | https://coda.io/trust/privacy |
支持的语言 | 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\/" ] } |