Widget Board
Widget-Board makes you productive, creative and organized
Was ist Widget Board?
Widget Board ist eine Chrome-Erweiterung, die von https://widget-board.com entwickelt wurde, und ihr Hauptmerkmal ist "Widget-Board makes you productive, creative and organized".
Erweiterungsscreenshots
Widget Board-Erweiterungs-CRX-Datei herunterladen
Laden Sie Widget Board-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gpdjfeaipjkdapdfkobjphpabnmogman |
| Offizielle URL | https://chromewebstore.google.com/detail/widget-board/gpdjfeaipjkdapdfkobjphpabnmogman |
| Beschreibung | Widget-Board makes you productive, creative and organized |
| Dateigröße | 551 KB |
| Installationsanzahl | 123 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2020-12-03 |
| Veröffentlichungsdatum | 2020-12-03 |
| Entwickler | https://widget-board.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://widget-board.com |
| Unterstützte Sprachen | 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'"
} | |