New tab page bookmarks
Override the new tab page with the bookmarks.
Cos'è New tab page bookmarks?
New tab page bookmarks è un'estensione di Chrome sviluppata da https://www.robertoentringer.com, e la sua funzione principale è "Override the new tab page with the bookmarks.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione New tab page bookmarks
Scarica i file di estensione New tab page bookmarks 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
This extension shows the bookmarks overview when opening a new tab in Chrome. You can get the full source code of extension on GitHub : https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers 🚀 New !!! Support dragging and dropping to change the order.
Informazioni di Base sull'Estensione
Nome | |
ID | jafnapncbaamdiooljaibpebonjpgffe |
URL Ufficiale | https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe |
Descrizione | Override the new tab page with the bookmarks. |
Dimensione del File | 17.56 KB |
Conteggio Installazioni | 29 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2019-05-28 |
Data di Pubblicazione | 2019-05-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://www.robertoentringer.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers |
URL della Pagina di Aiuto | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New tab page bookmarks", "description": "Override the new tab page with the bookmarks.", "version": "0.3", "incognito": "split", "chrome_url_overrides": { "newtab": "ntp.html" }, "browser_action": { "default_title": "Open new tab pabe", "default_icon": "icons\/icon32.png" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "src\/icons\/*.png" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "bookmarks", "storage", "topSites", "chrome:\/\/favicon\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |