Stop AutoLoop

Stops YouTube's autoplay feature from repeating the same videos

Stop AutoLoopคืออะไร?

Stop AutoLoop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Rychlewski และคุณลักษณะหลักของมันคือ "Stops YouTube's autoplay feature from repeating the same videos"

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

screenshot
screenshot

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

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

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

                        YouTube's autoplay feature leads to situations where a video you have already watched is played next. Such loops of watching the same two videos over and over again (worst case) are not necessarily desirable. This is why this browser extension can choose a different autoplay video to be played next (foreground tabs) or redirect the site if the video has already been watched (background tabs). For this purpose, a URL history is recorded by the extension. The add-on allows for customization options, e.g., if playlists shall be considered as video candidates, under which circumstances the URL history shall be cleared and how large the time intervals for site analysis shall be.

Since v1.1, whitelists / blacklists, maximum video lengths and recommendation numbers are supported. Users can display the URL history to the extension's background page. The permissions are less demanding.

For a more detailed and/or technical description of the project, please visit the corresponding GitHub page: https://github.com/daniel-rychlewski/stop-autoloop
If you would like to support my work, I would appreciate any donation amount on my Patreon: https://www.patreon.com/danielrychlewski                    

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

ชื่อ Stop AutoLoop Stop AutoLoop
ID hdjcnbpapbfgniklmheihogibnmdbijo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stop-autoloop/hdjcnbpapbfgniklmheihogibnmdbijo
คำอธิบาย Stops YouTube's autoplay feature from repeating the same videos
ขนาดไฟล์ 987 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-07-22
วันที่เผยแพร่ 2020-04-12
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Daniel Rychlewski
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stop AutoLoop",
    "version": "1.2",
    "description": "Stops YouTube's autoplay feature from repeating the same videos",
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.youtube.com\/watch*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "global.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "autoplay.js"
            ]
        }
    ],
    "browser_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
}