Google sheet search
Adds a button to search through sheets in google sheet
What is Google sheet search?
Google sheet search is a Chrome extension developed by chiter814, and its main feature is "Adds a button to search through sheets in google sheet".
Extension Screenshots
Download Google sheet search Extension CRX File
Download Google sheet search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google sheet search |
ID | jkedikdbdoppjkfaceohjadpdcnanfid |
Official URL | https://chromewebstore.google.com/detail/google-sheet-search/jkedikdbdoppjkfaceohjadpdcnanfid |
Description | Adds a button to search through sheets in google sheet |
File Size | 21.19 KB |
Installation Count | 148 |
Current Version | 1.1.0 |
Last Updated | 2021-05-01 |
Publish Date | 2021-01-30 |
Rating | 4.33/5 Total 3 Ratings |
Developer | chiter814 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |