Fast New Tab Redirect
Redirect the New Tab page to your favorite
Fast New Tab Redirect क्या है?
Fast New Tab Redirect fumito80 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect the New Tab page to your favorite"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fast New Tab Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
It's a minimal implementation for the New Tab page redirection. The main code is only just 7 lines.
एक्सटेंशन की मूल जानकारी
नाम | Fast New Tab Redirect |
ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
आधिकारिक URL | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
विवरण | Redirect the New Tab page to your favorite |
फ़ाइल का आकार | 4.14 KB |
स्थापना संख्या | 5,000 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2016-08-14 |
प्रकाशन तिथि | 2016-08-14 |
रेटिंग | 4.27/5 कुल 64 रेटिंग्स |
डेवलपर | fumito80 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fast New Tab Redirect", "description": "Redirect the New Tab page to your favorite", "version": "1.4", "options_page": "options.html", "chrome_url_overrides": { "newtab": "dummy.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*\/*" ] } |