New Tab As Apps
Causes the new tab to default to the Apps view instead of the google splash view.
ما هو New Tab As Apps؟
New Tab As Apps هو إضافة Chrome تم تطويرها بواسطة http://holtstrom.com، والميزة الرئيسية لها هي "Causes the new tab to default to the Apps view instead of the google splash view.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة New Tab As Apps
قم بتنزيل ملفات الامتداد New Tab As Apps بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
While installed, new tabs default to 'chrome://apps/' Updated Dec 2019 because it stopped working. Fixed by changing url to pendingUrl. This extension will always be free and will never have ads. This extension was created in response to Chrome's Feb 2014 removal of the "Enable Instant Extended API" that let you default your new tab to the Apps view. The source code is very simple and is posted online, so you can inspect it for yourself. http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html If you prefer, you can instead use my "Home Button At Top Right" extension (https://chrome.google.com/webstore/detail/home-button-at-top-right/bfejcgpdahgpmgadhgdadfiekmhgnifm) which lets you (via right-click Options) toggle on/off the new-tabs-as-apps feature.
معلومات أساسية عن التمديد
الاسم | |
ID | fmganoiddmbjfgmdpnkmiconhkbibilk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/new-tab-as-apps/fmganoiddmbjfgmdpnkmiconhkbibilk |
الوصف | Causes the new tab to default to the Apps view instead of the google splash view. |
حجم الملف | 4.75 KB |
عدد التثبيتات | 749 |
النسخة الحالية | 1.1 |
آخر تحديث | 2020-11-24 |
تاريخ النشر | 2019-12-14 |
تقييم | 4.93/5 مجموع تقييمات 14 |
المطور | http://holtstrom.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab As Apps", "description": "Causes the new tab to default to the Apps view instead of the google splash view.", "version": "1.1", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |