New tab page bookmarks
Override the new tab page with the bookmarks.
New tab page bookmarks क्या है?
New tab page bookmarks https://www.robertoentringer.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Override the new tab page with the bookmarks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में New tab page bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
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 } |