Search Operators Cheatsheet
Frequently used search operators with examples
Τι είναι το Search Operators Cheatsheet;
Το Search Operators Cheatsheet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ilhan-mstf.github.io, και η κύρια λειτουργία του είναι "Frequently used search operators with examples".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Search Operators Cheatsheet
Λήψη αρχείων επέκτασης Search Operators Cheatsheet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
# Search Operators Cheatsheet This extension aims to remind you search operators that are used to refine search results. The extension just gives examples of them. It doesn't aim to replace Google Advanced Search. This extension doesn't collect any user and web page information. It only runs on google.com. It is free to use. ## Contributions Contributions are welcome. Release Log: ------------ Version 0.0.2: - Style fix Version 0.0.1: - Initial Release
Βασικές Πληροφορίες Επέκτασης
Όνομα | Search Operators Cheatsheet |
ID | mnjgcpbkeklinnmgcjfefbcpkfblnmki |
Επίσημο URL | https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki |
Περιγραφή | Frequently used search operators with examples |
Μέγεθος Αρχείου | 1.48 MB |
Αριθμός Εγκαταστάσεων | 30 |
Τρέχουσα Έκδοση | 0.0.2 |
Τελευταία Ενημέρωση | 2020-09-13 |
Ημερομηνία Δημοσίευσης | 2020-04-08 |
Προγραμματιστής | https://ilhan-mstf.github.io |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/ilhan-mstf/search-operators-cheatsheet |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/ilhan-mstf/search-operators-cheatsheet |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search Operators Cheatsheet", "description": "Frequently used search operators with examples", "version": "0.0.2", "homepage_url": "https:\/\/github.com\/ilhan-mstf\/search-operators-cheatsheet", "manifest_version": 2, "icons": { "16": "img\/logo_16.png", "32": "img\/logo_32.png", "64": "img\/logo_64.png", "128": "img\/logo_128.png" }, "browser_action": { "default_popup": "hello.html", "default_icon": "img\/logo_16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.google.com\/search*" ], "js": [ "main.js" ], "css": [ "style.css" ] } ] } |