Shift Youtube Optimizer

Chrome extension to hide/reduce the number of videos shown on YouTube.

Shift Youtube Optimizerคืออะไร?

Shift Youtube Optimizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alexander.foster.mcculloch และคุณลักษณะหลักของมันคือ "Chrome extension to hide/reduce the number of videos shown on YouTube."

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

screenshot

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

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

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

                        As the summary above states, this is a simple open-source chrome extension written in vanilla JavaScript, CSS and of course, HTML, using the Chrome Extension format, although shortly there should be an extension for Firefox as well. I noticed a number of other Chrome Extensions that were similar but they all only worked on the homepage, so I decided to make one that worked all over the site, and didn't need the mouse to scroll before it would activate.

I spent a few days looking into how YouTube sets up the front-end of their website, so if anyone has any questions, feel free to shoot me a message. Also, if anyone would like to check out the source-code, or contribute to make it ever better (or fix bugs), check out the github page for this chrome extension : https://github.com/robertfrosty/shift-yt-optimizer .                    

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

ชื่อ Shift Youtube Optimizer Shift Youtube Optimizer
ID hfndjegliabemhpfcdecfehlipjdnecp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shift-youtube-optimizer/hfndjegliabemhpfcdecfehlipjdnecp
คำอธิบาย Chrome extension to hide/reduce the number of videos shown on YouTube.
ขนาดไฟล์ 1.74 MB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2021-10-23
วันที่เผยแพร่ 2021-09-24
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา alexander.foster.mcculloch
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/robertfrosty/shift-yt-optimizer
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shift Youtube Optimizer",
    "description": "Chrome extension to hide\/reduce the number of videos shown on YouTube.",
    "version": "1.0.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "observe.js"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/ui\/options.html",
        "default_icon": {
            "16": ".\/ui\/icons\/icon.png",
            "32": ".\/ui\/icons\/icon2x.png",
            "48": ".\/ui\/icons\/icon3x.png",
            "128": ".\/ui\/icons\/icon128px.png"
        }
    },
    "icons": {
        "16": ".\/ui\/icons\/icon.png",
        "32": ".\/ui\/icons\/icon2x.png",
        "48": ".\/ui\/icons\/icon3x.png",
        "128": ".\/ui\/icons\/icon128px.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}