Smart New Tab
A smarter new tab page for everyone
Smart New Tab क्या है?
Smart New Tab https://bewisse.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A smarter new tab page for everyone"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Smart New Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Smart New Tab gives you quick access to what you need in your New Tab screen. ** Features ** - Top visited sites - Search with clipboard text - Recent searches on Google - Recently closed tabs across all devices - Recent browse history - Apps - Weather - Automatically update background picture - Add more shortcut ** Version 1.1.2 ** - Improve the initial experience ** Version 1.1.1 ** - Hide empty app bar and make list collapsible ** Version 1.1.0 ** - Make most permissions optional. User can selectively decide which permission to grant in the extension. Official website: https://bewisse.com/newtab/ Source code: https://github.com/bewisse/newtab
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ppbaflbhifnaoimjkaogodphnbhdgmfi |
आधिकारिक URL | https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi |
विवरण | A smarter new tab page for everyone |
फ़ाइल का आकार | 508 KB |
स्थापना संख्या | 128 |
वर्तमान संस्करण | 1.1.3 |
अंतिम अपडेट | 2021-06-29 |
प्रकाशन तिथि | 2020-04-26 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://bewisse.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://bewisse.com/newtab/ |
सहायता पृष्ठ URL | https://bewisse.com/newtab/ |
गोपनीयता नीति पृष्ठ URL | https://modheader.com/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smart New Tab", "version": "1.1.3", "description": "A smarter new tab page for everyone", "author": "[email protected]", "manifest_version": 2, "icons": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "default_popup": "popup\/popup.html" }, "permissions": [ "chrome:\/\/favicon\/", "https:\/\/www.google.com\/*", "storage" ], "optional_permissions": [ "tabs", "clipboardRead", "topSites", "history", "management", "sessions" ], "chrome_url_overrides": { "newtab": "pages\/newtab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |