Widget Board
Widget-Board makes you productive, creative and organized
什么是Widget Board?
Widget Board是由https://widget-board.com开发的Chrome扩展程序,该扩展的主要功能是“Widget-Board makes you productive, creative and organized”。
扩展截图
下载Widget Board扩展crx文件
下载Widget Board扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The official extension for your Widget-board.com account:
* Choose what happens on a new tab: the main screen, a new board or a specific board.
* Access your recently viewed boards from any tab.
* Quick 'New Board' button for easy creation.
* Search for boards via name or tag name. 扩展基本信息
| 名称 | |
| ID | gpdjfeaipjkdapdfkobjphpabnmogman |
| 官方URL | https://chromewebstore.google.com/detail/widget-board/gpdjfeaipjkdapdfkobjphpabnmogman |
| 简介 | Widget-Board makes you productive, creative and organized |
| 文件大小 | 551 KB |
| 安装次数 | 123 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2020-12-03 |
| 上架时间 | 2020-12-03 |
| 开发者 | https://widget-board.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://widget-board.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Widget Board",
"short_name": "Widget Board",
"version": "1.0.0",
"description": "Widget-Board makes you productive, creative and organized",
"icons": {
"16": "assets\/logo\/logo-16.png",
"48": "assets\/logo\/logo-48.png",
"128": "assets\/logo\/logo-128.png"
},
"permissions": [
"storage"
],
"browser_action": {
"default_popup": "index.html?#\/popup",
"default_title": "Widget Board"
},
"chrome_url_overrides": {
"newtab": "index.html?#\/tab"
},
"content_scripts": [
{
"js": [
"contentPage.js"
],
"matches": [
"https:\/\/*.widget-board.com\/*"
]
}
],
"background": {
"scripts": [
"backgroundPage.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/apis.google.com\/ 'unsafe-eval'; object-src 'self'"
} | |