├── .gitignore ├── img ├── logo_128.png ├── logo_16.png ├── logo_32.png └── logo_64.png ├── assets ├── original.png ├── promo_1400x560.png ├── promo_440x280.png ├── promo_920x680.png └── screenshot_1280x800.png ├── style.css ├── README.md ├── DetailedDescription.md ├── manifest.json ├── hello.html ├── LICENSE └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | .history 2 | archieve 3 | *.zip -------------------------------------------------------------------------------- /img/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/img/logo_128.png -------------------------------------------------------------------------------- /img/logo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/img/logo_16.png -------------------------------------------------------------------------------- /img/logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/img/logo_32.png -------------------------------------------------------------------------------- /img/logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/img/logo_64.png -------------------------------------------------------------------------------- /assets/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/assets/original.png -------------------------------------------------------------------------------- /assets/promo_1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/assets/promo_1400x560.png -------------------------------------------------------------------------------- /assets/promo_440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/assets/promo_440x280.png -------------------------------------------------------------------------------- /assets/promo_920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/assets/promo_920x680.png -------------------------------------------------------------------------------- /assets/screenshot_1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilhan-mstf/search-operators-cheatsheet/master/assets/screenshot_1280x800.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .search-operators-ext-container { 2 | position: absolute; 3 | top: 0; 4 | left: 880px; 5 | right: 140px; 6 | opacity: .5; 7 | } 8 | 9 | .minidiv .search-operators-ext-container { 10 | top: 10px; 11 | } 12 | 13 | .search-operators-ext-select { 14 | padding: 13px; 15 | border-radius: 24px; 16 | height: 46px; 17 | outline: none; 18 | width: 100%; 19 | font-family: monospace; 20 | } 21 | 22 | .minidiv .search-operators-ext-select { 23 | padding: 7px; 24 | border-radius: 18px; 25 | height: 34px; 26 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Search Operators Cheatsheet 2 | This extension aims to remind you search operators that are used to refine search results. The extension just gives examples of them. 3 | 4 | It doesn't aim to replace Google Advanced Search. 5 | 6 | This extension doesn't collect any user and web page information. It only runs on google.com. It is free to use. 7 | 8 |  9 | 10 | ## Contributions 11 | Contributions are welcome. Please follow the standart.js convention if you want to contribute. 12 | -------------------------------------------------------------------------------- /DetailedDescription.md: -------------------------------------------------------------------------------- 1 | # Search Operators Cheatsheet 2 | This extension aims to remind you search operators that are used to refine search results. It just gives examples of them. 3 | 4 | It doesn't aim to replace Google Advanced Search. 5 | 6 | It only works on google.com. 7 | 8 | It doesn't collect any user and web page information. It only runs on google.com. It is free to use. 9 | 10 | ## Contributions 11 | Contributions are welcome. Please follow the standart.js convention if you want to contribute. 12 | 13 | Release Log: 14 | ------------ 15 | Version 0.0.2: 16 | - Style fix 17 | 18 | Version 0.0.1: 19 | - Initial Release 20 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Search Operators Cheatsheet", 3 | "description" : "Frequently used search operators with examples", 4 | "version": "0.0.2", 5 | "homepage_url": "https://github.com/ilhan-mstf/search-operators-cheatsheet", 6 | "manifest_version": 2, 7 | "icons": { 8 | "16": "img/logo_16.png", 9 | "32": "img/logo_32.png", 10 | "64": "img/logo_64.png", 11 | "128": "img/logo_128.png" 12 | }, 13 | "browser_action": { 14 | "default_popup": "hello.html", 15 | "default_icon": "img/logo_16.png" 16 | }, 17 | "content_scripts": [{ 18 | "matches": [ 19 | "https://*.google.com/search*" 20 | ], 21 | "js": [ 22 | "main.js" 23 | ], 24 | "css": [ 25 | "style.css" 26 | ] 27 | }] 28 | } 29 | -------------------------------------------------------------------------------- /hello.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 12 | 13 | 14 |This extension aims to remind you search operators that are used to refine search results. It just gives examples of them.
16 |It doesn't aim to replace Google Advanced Search.
17 |It only works on google.com.
18 |It doesn't collect any user and web page information. It only runs on google.com. It is free to use.
19 | 20 | 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2020 Mustafa İlhan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * License: MIT 3 | * Author: Mustafa İlhan, http://ilhan-mstf.github.io/ 4 | */ 5 | 6 | const searchForm = document.getElementById("searchform"); 7 | if (searchForm) { 8 | const searchOperatorsContainer = document.createElement("div"); 9 | searchOperatorsContainer.className = "search-operators-ext-container"; 10 | searchOperatorsContainer.innerHTML = ` 11 | `; 32 | 33 | searchForm.appendChild(searchOperatorsContainer); 34 | } --------------------------------------------------------------------------------