New tab page bookmarks

Override the new tab page with the bookmarks.

什么是New tab page bookmarks?

New tab page bookmarks是由https://www.robertoentringer.com开发的Chrome扩展程序,该扩展的主要功能是“Override the new tab page with the bookmarks.”。

扩展截图

screenshot

下载New tab page bookmarks扩展crx文件

下载New tab page bookmarks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
官方URL https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
简介 Override the new tab page with the bookmarks.
文件大小 17.56 KB
安装次数 29
当前版本 0.3
更新时间 2019-05-28
上架时间 2019-05-28
评分 5.00/5 共1次评分
开发者 https://www.robertoentringer.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
帮助页面URL https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
支持的语言 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
}