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 |
| 官方網址 | 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'"
} | |