New tab page bookmarks

Override the new tab page with the bookmarks.

Vad är New tab page bookmarks?

New tab page bookmarks är en Chrome-tillägg utvecklad av https://www.robertoentringer.com, och dess huvudfunktion är "Override the new tab page with the bookmarks.".

Tilläggsskärmbilder

screenshot

Ladda ner New tab page bookmarks-förlängningens CRX-fil

Ladda ner New tab page bookmarks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
Officiell webbadress https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Beskrivning Override the new tab page with the bookmarks.
Filstorlek 17.56 KB
Antal Installationer 29
Aktuell Version 0.3
Senast Uppdaterad 2019-05-28
Publiceringsdatum 2019-05-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.robertoentringer.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
Hjälpsida URL https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Stödda Språk 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
}