Google sheet search
Adds a button to search through sheets in google sheet
Co je Google sheet search?
Google sheet search je rozšíření Chrome vyvinuté chiter814, a jeho hlavní funkcí je „Adds a button to search through sheets in google sheet“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Google sheet search
Stáhněte si soubory rozšíření Google sheet search ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Google sheet search |
ID | jkedikdbdoppjkfaceohjadpdcnanfid |
Oficiální URL | https://chromewebstore.google.com/detail/google-sheet-search/jkedikdbdoppjkfaceohjadpdcnanfid |
Popis | Adds a button to search through sheets in google sheet |
Velikost souboru | 21.19 KB |
Počet instalací | 148 |
Aktuální Verze | 1.1.0 |
Poslední Aktualizace | 2021-05-01 |
Datum Vydání | 2021-01-30 |
Hodnocení | 4.33/5 Celkem 3 Hodnocení |
Vývojář | chiter814 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |