Focused Youtube

Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube

ما هو Focused Youtube؟

Focused Youtube هو إضافة Chrome تم تطويرها بواسطة makaroni4، والميزة الرئيسية لها هي "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Focused Youtube

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

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

                        This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. 

Extension requires access to Youtube website to change its outlook.

Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).

Enjoy <3

Important: the extension doesn't collect any data about Youtube usage.                    

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

الاسم Focused Youtube Focused Youtube
ID nfghbmabdoakhobmimnjkamfdnpfammn
عنوان URL الرسمي https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn
الوصف Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
حجم الملف 170 KB
عدد التثبيتات 4,232
النسخة الحالية 1.12
آخر تحديث 2024-01-27
تاريخ النشر 2019-01-06
تقييم 4.88/5 مجموع تقييمات 72
المطور makaroni4
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/makaroni4/focused_youtube
عنوان صفحة المساعدة https://github.com/makaroni4/focused_youtube/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Focused Youtube",
    "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
    "version": "1.12",
    "author": "Anatoli Makarevich",
    "icons": {
        "128": "extension_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "assets\/extension.js"
            ],
            "css": [
                "assets\/extension.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/m.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/Roboto-Regular.ttf",
                "assets\/popup.js",
                "assets\/popup.css",
                "images\/search_icon.svg",
                "images\/youtube_logo.png",
                "images\/search_icon_dark.svg",
                "images\/youtube_logo_dark.png",
                "images\/extension_icon.png"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ]
        }
    ]
}