Autoplay Settings for YouTube™

Disable autoplay on YouTube™ and save your autoplay settings between sessions.

Autoplay Settings for YouTube™คืออะไร?

Autoplay Settings for YouTube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://armin.dev และคุณลักษณะหลักของมันคือ "Disable autoplay on YouTube™ and save your autoplay settings between sessions."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autoplay Settings for YouTube™

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

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

                        Autoplay Settings for YouTube™ is a browser extension that disables the automatic playback of the next video on YouTube™, and remembers your autoplay settings between sessions. Disabling autoplay for playlists is also supported.

The continued development of Autoplay Settings for YouTube™ is made possible thanks to the support of awesome backers. If you'd like to join them, please check out https://armin.dev/go/patreon

Autoplay is turned off by default when the extension is installed, and it can be turned on again from YouTube™, or from the extension's options. Reload already opened videos for changes to take effect.

The developer does not collect any personal data from this extension. Visit the extension's privacy policy for more information.

https://github.com/dessant/youtube-autoplay/wiki/Privacy-policy

The extension is also available for Edge and Firefox: https://github.com/dessant/youtube-autoplay#readme

Reviews are not monitored for bug reports, please use GitHub for issues and feature requests.

https://github.com/dessant/youtube-autoplay

YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

ชื่อ Autoplay Settings for YouTube™ Autoplay Settings for YouTube™
ID aogbgdnkcjgamgglpikcenliinchedel
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autoplay-settings-for-you/aogbgdnkcjgamgglpikcenliinchedel
คำอธิบาย Disable autoplay on YouTube™ and save your autoplay settings between sessions.
ขนาดไฟล์ 545 KB
จำนวนการติดตั้ง 3,182
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2023-09-13
วันที่เผยแพร่ 2020-02-02
คะแนน 4.04/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา https://armin.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dessant/youtube-autoplay#readme
URL หน้าช่วยเหลือ https://github.com/dessant/youtube-autoplay/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.0.1",
    "author": "Armin Sebastian",
    "homepage_url": "https:\/\/github.com\/dessant\/youtube-autoplay",
    "default_locale": "en",
    "minimum_chrome_version": "92.0",
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_security_policy": "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; connect-src *; media-src 'none'; object-src 'none'; child-src 'none'; form-action 'none';",
    "icons": {
        "16": "src\/assets\/icons\/app\/icon-16.png",
        "19": "src\/assets\/icons\/app\/icon-19.png",
        "24": "src\/assets\/icons\/app\/icon-24.png",
        "32": "src\/assets\/icons\/app\/icon-32.png",
        "38": "src\/assets\/icons\/app\/icon-38.png",
        "48": "src\/assets\/icons\/app\/icon-48.png",
        "64": "src\/assets\/icons\/app\/icon-64.png",
        "96": "src\/assets\/icons\/app\/icon-96.png",
        "128": "src\/assets\/icons\/app\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "src\/assets\/icons\/app\/icon-16.png",
            "19": "src\/assets\/icons\/app\/icon-19.png",
            "24": "src\/assets\/icons\/app\/icon-24.png",
            "32": "src\/assets\/icons\/app\/icon-32.png",
            "38": "src\/assets\/icons\/app\/icon-38.png",
            "48": "src\/assets\/icons\/app\/icon-48.png",
            "64": "src\/assets\/icons\/app\/icon-64.png",
            "96": "src\/assets\/icons\/app\/icon-96.png",
            "128": "src\/assets\/icons\/app\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "background": {
        "page": "src\/background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "src\/base\/script.js"
            ]
        }
    ],
    "incognito": "split"
}