Time Travel
Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time.
Time Travel란 무엇입니까?
Time Travel은(는) Christian Pulvermacher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time."입니다.
확장 프로그램 스크린샷
Time Travel 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Change the current date and time seen by websites. You can use it to debug time-dependent frontend/JavaScript applications without having to change the system time. Usage: - Click the extension icon in the toolbar. - Enter the date and time you want to set and confirm, e.g. "2023-04-27 12:40" (local time) - When first activating the extension on a tab, click Reload when prompted. - Any JavaScript Date object in the current tab now returns the fake date/time you set. To restore the system time, click the extension icon again and press Reset. When the fake time is turned on, the clock is paused by default. You can press the play (▶) button to make the fake clock tick forward at a normal rate. Press stop (⏹) to pause the clock.
확장 프로그램 기본 정보
이름 | Time Travel |
ID | jfdbpgcmmenmelcghpbbkldkcfiejcjg |
공식 URL | https://chromewebstore.google.com/detail/time-travel/jfdbpgcmmenmelcghpbbkldkcfiejcjg |
설명 | Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time. |
파일 크기 | 25.69 KB |
설치 횟수 | 1,783 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2023-04-30 |
평점 | 4.46/5 총 13 개의 평점 |
개발자 | Christian Pulvermacher |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/cpulvermacher/time-travel |
도움말 페이지 URL | https://github.com/cpulvermacher/time-travel/discussions/categories/q-a |
개인정보 보호 정책 페이지 URL | https://github.com/cpulvermacher/time-travel/blob/master/doc/Privacy%20Policy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Time Travel", "description": "Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time.", "version": "1.1.1", "version_name": "1.1.1", "minimum_chrome_version": "102", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "scripts\/sw-chrome.js", "type": "module" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_popup": "popup\/popup.html" }, "permissions": [ "activeTab", "scripting" ] } |