Google Sheets Tabs on top
Move Google Sheets tabs on top
Cos'è Google Sheets Tabs on top?
Google Sheets Tabs on top è un'estensione di Chrome sviluppata da Kazuki Yamada, e la sua funzione principale è "Move Google Sheets tabs on top".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Sheets Tabs on top
Scarica i file di estensione Google Sheets Tabs on top in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension does not send the user's data anywhere. It's also completely open source. Source: https://github.com/yamadashy/sheets-tabs-on-top-extension
Informazioni di Base sull'Estensione
Nome | Google Sheets Tabs on top |
ID | lbhlhhckfpdpafckdiklcbamkmogjdjc |
URL Ufficiale | https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc |
Descrizione | Move Google Sheets tabs on top |
Dimensione del File | 27.76 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.1.4 |
Ultimo Aggiornamento | 2023-09-16 |
Data di Pubblicazione | 2020-07-03 |
Valutazione | 4.80/5 Totale 10 Valutazioni |
Sviluppatore | Kazuki Yamada |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/yamadashy/sheets-tabs-on-top-extension |
URL della Pagina di Aiuto | https://github.com/yamadashy/sheets-tabs-on-top-extension/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy |
Lingue Supportate | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.1.4", "manifest_version": 3, "short_name": "__MSG_appShortName__", "default_locale": "en", "author": "Kazuki Yamada", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "minimum_chrome_version": "88.0", "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/spreadsheets\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/docs.google.com\/spreadsheets\/*" ] } |