Streamer Mode for Chrome

Hides personal information from pages, similar to Discord's Streamer mode.

ما هو Streamer Mode for Chrome؟

Streamer Mode for Chrome هو إضافة Chrome تم تطويرها بواسطة aidanrjob، والميزة الرئيسية لها هي "Hides personal information from pages, similar to Discord's Streamer mode.".

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

screenshot

تحميل ملف CRX للإضافة Streamer Mode for Chrome

قم بتنزيل ملفات الامتداد Streamer Mode for Chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Checkout out this new privacy extension!
It hides visible personal information from pages, similar to Discord's Streamer mode.

Here's what that means: 
When people are sharing their screen on Discord, Zoom, or even on sites like Twitch.tv. They often use their browser to react to videos, present information, play a game, etc. And if they visit a page that displays their full name, email or some other type of personal information, that information is visible to the stream and there is nothing they can do to stop it. That information can then be used to spam, dox, and harass a streamer or a user of these platforms. Platforms like Discord have a built-in 'Streamer Mode' that hides personal information on Discord. But these modes don't protect users when they are streaming their browser. Other sites or platforms could still display personal information and up until recently, there was no tool to protect users. This extension is the tool that solves these problems. With it, you can prevent your information from getting in the hands of people that shouldn't have ever had it; by preemptively removing that information from pages, before those pages are even visible.

Features:
- Ensures pages do not display your personal information, EVEN while and before loading.
- Prevents changes to the pages from showing your personal information.
- Ability to specify any string as personal information.
- Warns users if a page is not fully supported by the extension, to prevent them from accidentally leaking their information.
- Regex support (i.e. [0-9][0-9][0-9]\ Street\ Name) (Credit: u/VKNiLive)
- and finally a whitelist

Known Issues:
- Must be manaully updated when new unsupported sites are reported.
- Doesn't support all sites
- Tab title is still visible during load, leaking personal information contained in the title.

Github: https://github.com/AidanSpeakss/streamer-mode-for-firefox                    

معلومات أساسية عن التمديد

الاسم Streamer Mode for Chrome Streamer Mode for Chrome
ID cpdfpajodamflehhkgmpdhfobjdgfimj
عنوان URL الرسمي https://chromewebstore.google.com/detail/streamer-mode-for-chrome/cpdfpajodamflehhkgmpdhfobjdgfimj
الوصف Hides personal information from pages, similar to Discord's Streamer mode.
حجم الملف 17.2 KB
عدد التثبيتات 178
النسخة الحالية 1.7.1
آخر تحديث 2022-02-10
تاريخ النشر 2022-02-05
تقييم 3.00/5 مجموع تقييمات 2
المطور aidanrjob
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/AidanSpeakss/streamer-mode-for-firefox/
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Streamer Mode for Chrome",
    "version": "1.7.1",
    "author": "Aidan Raney - https:\/\/devaidan.com\/",
    "homepage_url": "https:\/\/github.com\/AidanSpeakss\/streamer-mode-for-firefox",
    "description": "Hides personal information from pages, similar to Discord's Streamer mode.",
    "icons": {
        "48": "icons\/icon.png"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Streamer Mode for Chrome!",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "js": "options.js",
        "browser_style": false
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "exclude_matches": [
                "http:\/\/*.docs.google.com\/*",
                "https:\/\/*.docs.google.com\/*",
                "http:\/\/docs.google.com\/*",
                "https:\/\/docs.google.com\/*",
                "https:\/\/coronavirus.data.gov.uk\/*",
                "http:\/\/coronavirus.data.gov.uk\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "background.js"
            ]
        },
        {
            "exclude_matches": [
                "https:\/\/coronavirus.data.gov.uk\/*",
                "http:\/\/coronavirus.data.gov.uk\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "css": [
                "background.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.docs.google.com\/*",
                "https:\/\/*.docs.google.com\/*",
                "http:\/\/docs.google.com\/*",
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "exclude.js"
            ]
        }
    ]
}