Youtube focus

Blocks Youtube recommendations so that you see only what you search.

Youtube focus là gì?

Youtube focus là một tiện ích mở rộng Chrome được phát triển bởi Priyanshu Nayan, và tính năng chính của nó là "Blocks Youtube recommendations so that you see only what you search.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube focus

Tải xuống các tệp mở rộng Youtube focus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube focus Youtube focus
ID elnjcclakbcdhbljljckfokbpmcicemo
URL Chính Thức https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo
Mô tả Blocks Youtube recommendations so that you see only what you search.
Kích Thước Tệp 10.62 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-04-08
Ngày Phát Hành 2020-04-08
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Priyanshu Nayan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/priyanshunayan/youtube-focus
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube focus",
    "version": "1.0.1",
    "description": "Blocks Youtube recommendations so that you see only what you search.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "storage",
            "tabs",
            "declarativeContent"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/youtube.com\/",
                "*:\/\/youtube.com\/watch*",
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "default_icon": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}