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.”。

擴展截圖

screenshot
screenshot

下載Time Travel擴展crx文件

下載Time Travel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Time Travel
ID jfdbpgcmmenmelcghpbbkldkcfiejcjg
官方網址 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"
    ]
}