New tab page bookmarks

Override the new tab page with the bookmarks.

New tab page bookmarks là gì?

New tab page bookmarks là một tiện ích mở rộng Chrome được phát triển bởi https://www.robertoentringer.com, và tính năng chính của nó là "Override the new tab page with the bookmarks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng New tab page bookmarks

Tải xuống các tệp mở rộng New tab page bookmarks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
URL Chính Thức https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Mô tả Override the new tab page with the bookmarks.
Kích Thước Tệp 17.56 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2019-05-28
Ngày Phát Hành 2019-05-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.robertoentringer.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
URL Trang Trợ Giúp https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Ngôn Ngữ Được Hỗ Trợ 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
}