Google Sheets Tabs on top

Move Google Sheets tabs on top

什么是Google Sheets Tabs on top?

Google Sheets Tabs on top是由Kazuki Yamada开发的Chrome扩展程序,该扩展的主要功能是“Move Google Sheets tabs on top”。

扩展截图

screenshot
screenshot

下载Google Sheets Tabs on top扩展crx文件

下载Google Sheets Tabs on top扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Google Sheets Tabs on top Google Sheets Tabs on top
ID lbhlhhckfpdpafckdiklcbamkmogjdjc
官方URL https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc
简介 Move Google Sheets tabs on top
文件大小 27.76 KB
安装次数 10,000
当前版本 1.1.4
更新时间 2023-09-16
上架时间 2020-07-03
评分 4.80/5 共10次评分
开发者 Kazuki Yamada
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/yamadashy/sheets-tabs-on-top-extension
帮助页面URL https://github.com/yamadashy/sheets-tabs-on-top-extension/issues
隐私政策页面URL https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy
支持的语言 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\/*"
    ]
}