Google Sheets Tabs on top
Move Google Sheets tabs on top
Qu'est-ce que Google Sheets Tabs on top ?
Google Sheets Tabs on top est une extension Chrome développée par Kazuki Yamada, et sa fonction principale est "Move Google Sheets tabs on top".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Sheets Tabs on top
Téléchargez les fichiers d'extension Google Sheets Tabs on top au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Google Sheets Tabs on top |
ID | lbhlhhckfpdpafckdiklcbamkmogjdjc |
URL Officiel | https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc |
Description | Move Google Sheets tabs on top |
Taille du Fichier | 27.76 KB |
Nombre d'Installations | 10,000 |
Version Actuelle | 1.1.4 |
Dernière Mise à Jour | 2023-09-16 |
Date de Publication | 2020-07-03 |
Évaluation | 4.80/5 Total 10 Évaluations |
Développeur | Kazuki Yamada |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/yamadashy/sheets-tabs-on-top-extension |
URL de la Page d'Aide | https://github.com/yamadashy/sheets-tabs-on-top-extension/issues |
URL de la Page de Politique de Confidentialité | https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy |
Langues Prises en Charge | 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\/*" ] } |