Search Operators Cheatsheet
Frequently used search operators with examples
Search Operators Cheatsheetとは何ですか?
Search Operators Cheatsheetはhttps://ilhan-mstf.github.ioによって開発されたChromeの拡張機能で、その主な機能は「Frequently used search operators with examples」です。
拡張機能のスクリーンショット
Search Operators Cheatsheet拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } ] } |