Search Operators Cheatsheet
Frequently used search operators with examples
Hvad er Search Operators Cheatsheet?
Search Operators Cheatsheet er en Chrome-udvidelse udviklet af https://ilhan-mstf.github.io, og dens hovedfunktion er "Frequently used search operators with examples".
Udvidelsesskærmbilleder
Download Search Operators Cheatsheet-udvidelses-CRX-fil
Download Search Operators Cheatsheet-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
# 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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mnjgcpbkeklinnmgcjfefbcpkfblnmki |
| Officiel URL | https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki |
| Beskrivelse | Frequently used search operators with examples |
| Filstørrelse | 1.48 MB |
| Antal Installationer | 30 |
| Nuværende Version | 0.0.2 |
| Senest Opdateret | 2020-09-13 |
| Udgivelsesdato | 2020-04-08 |
| Udvikler | https://ilhan-mstf.github.io |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/ilhan-mstf/search-operators-cheatsheet |
| Hjælpeside-URL | https://github.com/ilhan-mstf/search-operators-cheatsheet |
| Understøttede Sprog | 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"
]
}
]
} | |