New tab page bookmarks

Override the new tab page with the bookmarks.

New tab page bookmarksคืออะไร?

New tab page bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.robertoentringer.com และคุณลักษณะหลักของมันคือ "Override the new tab page with the bookmarks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย New tab page bookmarks

ดาวน์โหลดไฟล์ส่วนขยาย 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
}