Creep Alert

Check if friends or colleagues track you via email

ما هو Creep Alert؟

Creep Alert هو إضافة Chrome تم تطويرها بواسطة https://replidy.com، والميزة الرئيسية لها هي "Check if friends or colleagues track you via email".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Creep Alert

قم بتنزيل ملفات الامتداد Creep Alert بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة سياسة الخصوصية 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\/*"
    ]
}