Widget Board
Widget-Board makes you productive, creative and organized
Cos'è Widget Board?
Widget Board è un'estensione di Chrome sviluppata da https://widget-board.com, e la sua funzione principale è "Widget-Board makes you productive, creative and organized".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Widget Board
Scarica i file di estensione Widget Board in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Widget Board |
ID | gpdjfeaipjkdapdfkobjphpabnmogman |
URL Ufficiale | https://chromewebstore.google.com/detail/widget-board/gpdjfeaipjkdapdfkobjphpabnmogman |
Descrizione | Widget-Board makes you productive, creative and organized |
Dimensione del File | 551 KB |
Conteggio Installazioni | 123 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-12-03 |
Data di Pubblicazione | 2020-12-03 |
Sviluppatore | https://widget-board.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://widget-board.com |
Lingue Supportate | 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'" } |