Time Travel
Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time.
Time Travel là gì?
Time Travel là một tiện ích mở rộng Chrome được phát triển bởi Christian Pulvermacher, và tính năng chính của nó là "Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time.".
Ả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 Time Travel
Tải xuống các tệp mở rộng Time Travel 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jfdbpgcmmenmelcghpbbkldkcfiejcjg |
URL Chính Thức | https://chromewebstore.google.com/detail/time-travel/jfdbpgcmmenmelcghpbbkldkcfiejcjg |
Mô tả | Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time. |
Kích Thước Tệp | 25.69 KB |
Số Lần Cài Đặt | 1,783 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-11-08 |
Ngày Phát Hành | 2023-04-30 |
Đánh Giá | 4.46/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Christian Pulvermacher |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cpulvermacher/time-travel |
URL Trang Trợ Giúp | https://github.com/cpulvermacher/time-travel/discussions/categories/q-a |
URL Trang Chính Sách Bảo Mật | https://github.com/cpulvermacher/time-travel/blob/master/doc/Privacy%20Policy.md |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |