Tab for Google Tasks
Opens Google Tasks in a new tab. Light and Fast!
Tab for Google Tasksとは何ですか?
Tab for Google TasksはMostafa Shahverdyによって開発されたChromeの拡張機能で、その主な機能は「Opens Google Tasks in a new tab. Light and Fast!」です。
拡張機能のスクリーンショット
Tab for Google Tasks拡張機能のCRXファイルをダウンロード
Tab for Google Tasks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chrome extension makes it easy to get to your Google Tasks without having to open Gmail. Just click the extension icon in your toolbar and your Tasks will open in a new tab. With this extension, you can: - Stay organized and productive by keeping your Tasks separate from your Gmail. - Never miss a Task by having your Tasks open in a new tab that you can easily access. - Be more productive by being able to focus on your Tasks without being distracted by your Gmail.
拡張機能の基本情報
名前 | Tab for Google Tasks |
ID | pcmdjgpplgkpbkneadbpbjljmidomjco |
公式URL | https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco |
説明 | Opens Google Tasks in a new tab. Light and Fast! |
ファイルサイズ | 60.69 KB |
インストール数 | 240 |
現在のバージョン | 0.1 |
最終更新日 | 2023-03-30 |
公開日 | 2023-03-30 |
開発者 | Mostafa Shahverdy |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/shahverd/tab_for_googletasks |
ヘルプページのURL | https://github.com/shahverd/tab_for_googletasks/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "homepage_url": "https:\/\/github.com\/shahverd\/tab_for_googletasks", "name": "__MSG_ext_name__", "description": "__MSG_ext_description__", "author": "Mostafa Shahverdy", "manifest_version": 3, "default_locale": "en", "permissions": [], "host_permissions": [ "https:\/\/tasks.google.com\/*\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/tasks.google.com\/embed\/list\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "action": { "default_icon": { "128": "tasks128.png" } }, "icons": { "128": "tasks128.png" } } |