Google Sheets Tabs on top

Move Google Sheets tabs on top

What is Google Sheets Tabs on top?

Google Sheets Tabs on top is a Chrome extension developed by Kazuki Yamada, and its main feature is "Move Google Sheets tabs on top".

Extension Screenshots

screenshot
screenshot

Download Google Sheets Tabs on top Extension CRX File

Download Google Sheets Tabs on top extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Google Sheets Tabs on top Google Sheets Tabs on top
ID lbhlhhckfpdpafckdiklcbamkmogjdjc
Official URL https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc
Description Move Google Sheets tabs on top
File Size 27.76 KB
Installation Count 10,000
Current Version 1.1.4
Last Updated 2023-09-16
Publish Date 2020-07-03
Rating 4.80/5 Total 10 Ratings
Developer Kazuki Yamada
Email [email protected]
Payment Type free
Extension Website https://github.com/yamadashy/sheets-tabs-on-top-extension
Help Page URL https://github.com/yamadashy/sheets-tabs-on-top-extension/issues
Privacy Policy Page URL https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy
Supported Languages 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\/*"
    ]
}