Search Operators Cheatsheet
Frequently used search operators with examples
Qu'est-ce que Search Operators Cheatsheet ?
Search Operators Cheatsheet est une extension Chrome développée par https://ilhan-mstf.github.io, et sa fonction principale est "Frequently used search operators with examples".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Search Operators Cheatsheet
Téléchargez les fichiers d'extension Search Operators Cheatsheet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# 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
Informations de Base sur l'Extension
Nom | Search Operators Cheatsheet |
ID | mnjgcpbkeklinnmgcjfefbcpkfblnmki |
URL Officiel | https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki |
Description | Frequently used search operators with examples |
Taille du Fichier | 1.48 MB |
Nombre d'Installations | 30 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2020-09-13 |
Date de Publication | 2020-04-08 |
Développeur | https://ilhan-mstf.github.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ilhan-mstf/search-operators-cheatsheet |
URL de la Page d'Aide | https://github.com/ilhan-mstf/search-operators-cheatsheet |
Langues Prises en Charge | 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" ] } ] } |