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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
} | |