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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة New tab page bookmarks
قم بتنزيل ملفات الامتداد New tab page bookmarks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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 } |