TimeTab
A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.
TimeTab란 무엇입니까?
TimeTab은(는) Joshua Britt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened."입니다.
확장 프로그램 스크린샷
TimeTab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Please note, this is an ongoing side project and that I plan to add even more features when I can get to them. Feedback, recommendations, and reporting bugs via reviews/support is always welcome & appreciated. Otherwise, enjoy! - Display multiple clocks - Minimal and clean design - Show or hide custom labels - Light and dark mode support - Choose 12 or 24 hour format - Instant and runs offline - No additional site access
확장 프로그램 기본 정보
이름 | |
ID | dhjhmlhiaaepcekkmjpfcklcfiaepkof |
공식 URL | https://chrome.google.com/webstore/detail/timetab/dhjhmlhiaaepcekkmjpfcklcfiaepkof |
설명 | A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened. |
파일 크기 | 32.11 KB |
설치 횟수 | 90 |
현재 버전 | 3.2 |
최근 업데이트 | 2020-02-25 |
출시 날짜 | 2020-02-25 |
개발자 | Joshua Britt |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/MEDIA76/timetab |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TimeTab", "version": "3.2", "description": "A simple Chrome extension that displays the time, and\/or the time of multiple zones, whenever a new tab is opened.", "author": "Joshua Britt", "homepage_url": "https:\/\/github.com\/MEDIA76\/timetab", "permissions": [ "storage" ], "icons": { "16": "icons\/light\/16.png", "48": "icons\/light\/48.png", "128": "icons\/light\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "38": "icons\/light\/38.png" }, "default_title": "New Tab" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "offline_enabled": true, "manifest_version": 2 } |