Google Sheets Tabs on top
Move Google Sheets tabs on top
Wat is Google Sheets Tabs on top?
Google Sheets Tabs on top is een Chrome-extensie ontwikkeld door Kazuki Yamada, en de belangrijkste functie is "Move Google Sheets tabs on top".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Sheets Tabs on top
Download Google Sheets Tabs on top-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | lbhlhhckfpdpafckdiklcbamkmogjdjc |
| Officiële URL | https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc |
| Beschrijving | Move Google Sheets tabs on top |
| Bestandsgrootte | 27.76 KB |
| Aantal Installaties | 10,000 |
| Huidige Versie | 1.1.4 |
| Laatst Bijgewerkt | 2023-09-16 |
| Publicatiedatum | 2020-07-03 |
| Beoordeling | 4.80/5 Totaal 10 Beoordelingen |
| Ontwikkelaar | Kazuki Yamada |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/yamadashy/sheets-tabs-on-top-extension |
| Help Pagina-URL | https://github.com/yamadashy/sheets-tabs-on-top-extension/issues |
| URL van de Privacybeleid Pagina | https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy |
| Ondersteunde Talen | 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\/*"
]
} | |