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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Christian Pulvermacher, και η κύρια λειτουργία του είναι "Spoof the current date and time seen by websites. Useful for debugging frontend apps that depend on the time.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Time Travel
Λήψη αρχείων επέκτασης 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 |
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" ] } |