Google Search Suggestion Extractor
Extract search suggestions from Google Search
Google Search Suggestion Extractor क्या है?
Google Search Suggestion Extractor https://www.bigtechies.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract search suggestions from Google Search"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Search Suggestion Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The Google Search Suggestion Extractor is a Chrome extension designed to enhance the user's experience while using Google Search. Its primary functionality revolves around extracting and managing search suggestions provided by Google. This extension operates under the updated Chrome Extension Manifest V3 guidelines, ensuring a more secure and efficient performance.
एक्सटेंशन की मूल जानकारी
नाम | Google Search Suggestion Extractor |
ID | lbgklcfhclfdeapdabmcphhkomkofbga |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga |
विवरण | Extract search suggestions from Google Search |
फ़ाइल का आकार | 24.17 KB |
स्थापना संख्या | 155 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2024-02-17 |
प्रकाशन तिथि | 2024-02-17 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://www.bigtechies.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://www.bigtechies.com/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Search Suggestion Extractor", "version": "1.0", "description": "Extract search suggestions from Google Search", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icon.png" } } |