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.
拡張機能の基本情報
名前 | Widget Board |
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 |
Eメール | [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'" } |