Creep Alert
Check if friends or colleagues track you via email
Creep Alert란 무엇입니까?
Creep Alert은(는) https://replidy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check if friends or colleagues track you via email"입니다.
확장 프로그램 스크린샷
Creep Alert 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Creep Alert is the Chrome extension for Gmail that gives you an alert when someone tries to track you via email. It also blocks read-receipts and hidden tracking pixels. HOW IT WORKS: When a tracker is detected, it blocks it and shows an alert icon next to the sender's name. By clicking the alert icon, you will also be able to send a prewritten and polite response to the sender, informing them that you are not ok with being tracked.
확장 프로그램 기본 정보
이름 | Creep Alert |
ID | pbbkkjaggipediphjidoflnijohkfghk |
공식 URL | https://chromewebstore.google.com/detail/creep-alert/pbbkkjaggipediphjidoflnijohkfghk |
설명 | Check if friends or colleagues track you via email |
파일 크기 | 51.4 KB |
설치 횟수 | 256 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2019-07-30 |
출시 날짜 | 2019-07-30 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://replidy.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.replidy.com/creepalert |
개인정보 보호 정책 페이지 URL | https://www.getmailflow.com/legal/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.0.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "background": { "persistent": true, "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/logo-19.png", "38": "images\/logo-38.png", "48": "images\/logo-48.png" }, "default_title": "__MSG_browserActionTitle__" }, "minimum_chrome_version": "10.0", "options_ui": { "chrome_style": false, "open_in_tab": true, "page": "pages\/options.html" }, "web_accessible_resources": [ "scripts\/*.js", "images\/*", "pages\/options.html", "pages\/updated.html" ], "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/inbox.google.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end" } ], "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.google.com\/*", "*:\/\/*.googleusercontent.com\/*" ] } |