Google Search Suggestion Extractor
Extract search suggestions from Google Search
Τι είναι το Google Search Suggestion Extractor;
Το Google Search Suggestion Extractor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.bigtechies.com, και η κύρια λειτουργία του είναι "Extract search suggestions from Google Search".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Search Suggestion Extractor
Λήψη αρχείων επέκτασης Google Search Suggestion Extractor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |