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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the time zone setting for web pages in the browser to a randomly selected or user-specified time zone."입니다.
확장 프로그램 스크린샷
Spoof Timezone 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } ] } |