Spoof Timezone
Change the time zone setting for web pages in the browser to a randomly selected or user-specified time zone.
Spoof Timezone क्या है?
Spoof Timezone joue.quroi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change the time zone setting for web pages in the browser to a randomly selected or user-specified time zone."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spoof Timezone एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension alters the timezone information that the browser reveals to web pages to protect your actual timezone from being identified. You can ensure the extension spoofs the correct timezone by setting your preferred one on the options page. Additionally, there is an option to generate random timezones, which can be useful in preventing fingerprinting scripts from identifying your browser based on your actual time zone. To test the current timezone use the right-click context menu item. The extension can also automatically detect your timezone based on your IP address starting from version 0.1.4. Use the right-click action button's menu to access this option. Moreover, there is an option to check and update the timezone on start-up, which can be enabled from the options page. The latest version of the extension includes improvements such as faster injection into iframes and automatic timezone detection that now respects daylight shifting. This extension now works on manifest v3.
एक्सटेंशन की मूल जानकारी
नाम | Spoof Timezone |
ID | kcabmhnajflfolhelachlflngdbfhboe |
आधिकारिक URL | https://chromewebstore.google.com/detail/spoof-timezone/kcabmhnajflfolhelachlflngdbfhboe |
विवरण | Change the time zone setting for web pages in the browser to a randomly selected or user-specified time zone. |
फ़ाइल का आकार | 140 KB |
स्थापना संख्या | 53,951 |
वर्तमान संस्करण | 0.4.1 |
अंतिम अपडेट | 2024-02-06 |
प्रकाशन तिथि | 2018-08-01 |
रेटिंग | 3.69/5 कुल 36 रेटिंग्स |
डेवलपर | joue.quroi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://webextension.org/listing/spoof-timezone.html |
सहायता पृष्ठ URL | https://webextension.org/listing/spoof-timezone.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.4.1", "name": "Spoof Timezone", "description": "Change the time zone setting for web pages in the browser to a randomly selected or user-specified time zone.", "homepage_url": "https:\/\/webextension.org\/listing\/spoof-timezone.html", "permissions": [ "storage", "scripting", "webNavigation", "contextMenus", "notifications" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.png", "48": "\/data\/icons\/48.png", "64": "\/data\/icons\/64.png", "128": "\/data\/icons\/128.png", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" }, "action": [], "background": { "service_worker": "worker.js" }, "options_ui": { "page": "\/data\/options\/index.html" }, "content_scripts": [ { "world": "MAIN", "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "match_origin_as_fallback": true, "all_frames": true, "run_at": "document_start", "js": [ "\/data\/inject\/main.js" ] }, { "world": "ISOLATED", "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "match_origin_as_fallback": true, "all_frames": true, "run_at": "document_start", "js": [ "\/data\/inject\/isolated.js" ] } ] } |