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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |