New tab page bookmarks

Override the new tab page with the bookmarks.

O que é New tab page bookmarks?

New tab page bookmarks é uma extensão do Chrome desenvolvida por https://www.robertoentringer.com, e sua principal característica é "Override the new tab page with the bookmarks.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão New tab page bookmarks

Baixe arquivos de extensão New tab page bookmarks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
URL Oficial https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Descrição Override the new tab page with the bookmarks.
Tamanho do Arquivo 17.56 KB
Contagem de Instalações 29
Versão Atual 0.3
Última Atualização 2019-05-28
Data de Publicação 2019-05-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://www.robertoentringer.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
URL da Página de Ajuda https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Idiomas Suportados 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
}