Productive Youtube

Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…

Productive Youtubeคืออะไร?

Productive Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย daniel.ziorli และคุณลักษณะหลักของมันคือ "Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Productive Youtube

ดาวน์โหลดไฟล์ส่วนขยาย Productive Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a recommendations page optimized for watch time who can blame you. By removing it you can use youtube as a search engine instead of a mindless social media platform. Filter the channels you deem productive and increase the speed past 2x to take in information faster. Productive Youtube is designed to remove distraction and let you become the best you.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Productive Youtube Productive Youtube
ID iigjefiodblcogecpmdmpgboghepjcca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/productive-youtube/iigjefiodblcogecpmdmpgboghepjcca
คำอธิบาย Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…
ขนาดไฟล์ 12.19 KB
จำนวนการติดตั้ง 116
เวอร์ชันปัจจุบัน 0.5.1
อัปเดตครั้งล่าสุด 2019-04-19
วันที่เผยแพร่ 2019-04-18
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา daniel.ziorli
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Productive Youtube",
    "version": "0.5.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.youtube.ca\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "extension_icon.png"
    },
    "web_accessible_resources": [
        "redirect.html",
        "popup.html"
    ]
}