Google Sheets Tabs on top
Move Google Sheets tabs on top
Hvad er Google Sheets Tabs on top?
Google Sheets Tabs on top er en Chrome-udvidelse udviklet af Kazuki Yamada, og dens hovedfunktion er "Move Google Sheets tabs on top".
Udvidelsesskærmbilleder
Download Google Sheets Tabs on top-udvidelses-CRX-fil
Download Google Sheets Tabs on top-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Google Sheets Tabs on top |
ID | lbhlhhckfpdpafckdiklcbamkmogjdjc |
Officiel URL | https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc |
Beskrivelse | Move Google Sheets tabs on top |
Filstørrelse | 27.76 KB |
Antal Installationer | 10,000 |
Nuværende Version | 1.1.4 |
Senest Opdateret | 2023-09-16 |
Udgivelsesdato | 2020-07-03 |
Bedømmelse | 4.80/5 Samlet 10 Bedømmelser |
Udvikler | Kazuki Yamada |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/yamadashy/sheets-tabs-on-top-extension |
Hjælpeside-URL | https://github.com/yamadashy/sheets-tabs-on-top-extension/issues |
URL til Fortrolighedspolitik Side | https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy |
Understøttede Sprog | 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\/*" ] } |