Google sheet search
Adds a button to search through sheets in google sheet
Google sheet searchとは何ですか?
Google sheet searchはchiter814によって開発されたChromeの拡張機能で、その主な機能は「Adds a button to search through sheets in google sheet」です。
拡張機能のスクリーンショット
Google sheet search拡張機能のCRXファイルをダウンロード
Google sheet search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adding search for google docs sheets
Usage
1. Install
2. Reload google sheet page
3. Click search button
4. Enjoy
Shortcuts
1. Double `Shift` - open search menu
2. `Esc` then search menu open - close menu
Code link: https://github.com/Aleksandr-yask/gSheetHelper 拡張機能の基本情報
| 名前 | |
| ID | jkedikdbdoppjkfaceohjadpdcnanfid |
| 公式URL | https://chromewebstore.google.com/detail/google-sheet-search/jkedikdbdoppjkfaceohjadpdcnanfid |
| 説明 | Adds a button to search through sheets in google sheet |
| ファイルサイズ | 21.19 KB |
| インストール数 | 148 |
| 現在のバージョン | 1.1.0 |
| 最終更新日 | 2021-05-01 |
| 公開日 | 2021-01-30 |
| 評価 | 4.33/5 合計 3 レビュー |
| 開発者 | chiter814 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google sheet search",
"description": "Adds a button to search through sheets in google sheet",
"version": "1.1.0",
"browser_action": {
"default_icon": {
"16": "icons\/search16.png",
"24": "icons\/search24.png",
"32": "icons\/search32.png"
},
"default_title": "Google Sheets search"
},
"permissions": [
"*:\/\/*.docs.google.com\/spreadsheets\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.docs.google.com\/spreadsheets\/*"
],
"js": [
"script\/background.js"
],
"css": [
"css\/search.css"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons\/search16.png",
"48": "icons\/search64.png",
"128": "icons\/search128.png"
}
} | |