Google Sheets Tabs on top
Move Google Sheets tabs on top
Google Sheets Tabs on top là gì?
Google Sheets Tabs on top là một tiện ích mở rộng Chrome được phát triển bởi Kazuki Yamada, và tính năng chính của nó là "Move Google Sheets tabs on top".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Sheets Tabs on top
Tải xuống các tệp mở rộng Google Sheets Tabs on top dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Sheets Tabs on top |
ID | lbhlhhckfpdpafckdiklcbamkmogjdjc |
URL Chính Thức | https://chromewebstore.google.com/detail/google-sheets-tabs-on-top/lbhlhhckfpdpafckdiklcbamkmogjdjc |
Mô tả | Move Google Sheets tabs on top |
Kích Thước Tệp | 27.76 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.1.4 |
Cập Nhật Lần Cuối | 2023-09-16 |
Ngày Phát Hành | 2020-07-03 |
Đánh Giá | 4.80/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Kazuki Yamada |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yamadashy/sheets-tabs-on-top-extension |
URL Trang Trợ Giúp | https://github.com/yamadashy/sheets-tabs-on-top-extension/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/yamadashy/slack-channels-grouping/wiki/Privacy-Policy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |