Tab Disguiser

Disguises your tab's favicon and title.

ما هو Tab Disguiser؟

Tab Disguiser هو إضافة Chrome تم تطويرها بواسطة Mathk، والميزة الرئيسية لها هي "Disguises your tab's favicon and title.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tab Disguiser

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

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

                        Tab Disguiser is a chrome extension that will mask your tab title and favicon to a specific website of your choosing. This makes it so when the tab is not open, it looks like a different website. With this extension, you can also abort your current tab to another tab quickly.

To edit the websites the extension uses, press the extensions button and select "Tab Disguiser." 

Keybinds:
     Abort Tab- Alt+Q
     Disguise Tab- Alt+R                    

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

الاسم Tab Disguiser Tab Disguiser
ID goaelnlldimhbhipidknnkijnmfgddoc
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc
الوصف Disguises your tab's favicon and title.
حجم الملف 40.48 KB
عدد التثبيتات 94
النسخة الحالية 1.0.1
آخر تحديث 2023-03-23
تاريخ النشر 2023-03-20
تقييم 5.00/5 مجموع تقييمات 1
المطور Mathk
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Disguiser",
    "version": "1.0.1",
    "description": "Disguises your tab's favicon and title.",
    "manifest_version": 3,
    "author": "Mathk",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Tab Disguiser"
    },
    "commands": {
        "abort": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Aborts open tab and replaces it."
        },
        "abort-last": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Aborts the previous tab and replaces it."
        },
        "disguise": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Disguises current tab."
        }
    }
}