Incognito Toolkit
Tools to help you more secure on the internet
Incognito Toolkit란 무엇입니까?
Incognito Toolkit은(는) hypnguyen1209에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tools to help you more secure on the internet"입니다.
확장 프로그램 스크린샷
Incognito Toolkit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a tool with quite a lot of functions to help users use the internet more safely and is a useful tool when using Facebook. Block the tracking of Facebook, Google and Bing. Includes the following main protection tools: ✔ Block The "seen" Feature Of The Chat (updated March 2021). ✔ Block The Typing... Indicator Of The Chat (updated March 2021). ✔ Block Google Track Conversion. ✔ Block Bing UET Tracker. ✔ Block Facebook Events Tracker. ✔ Block Facebook Pixel. ✔ Block Google Analytics. Patch notes: 0.4.5 This version will fix the "seen" and "typing ..." blocking errors. 0.5 Added the feature of blocking "seen" and "typing ..." in chat on Instagram, in addition, it has blocked "seen" on the story. Github: https://github.com/hypnguyen1209 Contact me for assistance: https://www.facebook.com/hypnguyen1209 Privacy Policy: https://extension.hypnguyen.com/policy.html
확장 프로그램 기본 정보
이름 | Incognito Toolkit |
ID | imbbgalkkfggpdajknegllgicjkbojjd |
공식 URL | https://chromewebstore.google.com/detail/incognito-toolkit/imbbgalkkfggpdajknegllgicjkbojjd |
설명 | Tools to help you more secure on the internet |
파일 크기 | 20.72 KB |
설치 횟수 | 90 |
현재 버전 | 0.5 |
최근 업데이트 | 2021-04-13 |
출시 날짜 | 2020-05-08 |
평점 | 4.90/5 총 10 개의 평점 |
개발자 | hypnguyen1209 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://hypnguyen1209.github.io/incognito-toolkit/ |
개인정보 보호 정책 페이지 URL | https://extension.hypnguyen.com/policy.html |
지원되는 언어 | en,vi |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "author": "hypnguyen1209", "default_locale": "en", "description": "__MSG_appDescription__", "version": "0.5", "background": { "scripts": [ "core\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "core\/content_scripts.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/facebook.com\/*", "https:\/\/*.messenger.com\/*", "https:\/\/messenger.com\/*", "https:\/\/*.instagram.com\/*", "https:\/\/instagram.com\/*" ], "js": [ "core\/facebook.js" ], "run_at": "document_start" } ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com https:\/\/cdnjs.cloudflare.com https:\/\/*.cloudflare.com; object-src 'self'", "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "web_accessible_resources": [ "*" ] } |