AutoplayStopper

Stops video autoplay gracefully.

AutoplayStopper là gì?

AutoplayStopper là một tiện ích mở rộng Chrome được phát triển bởi yochaim, và tính năng chính của nó là "Stops video autoplay gracefully.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng AutoplayStopper 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

                        Make video players (flash & html5) show video thumbnail instead of autoplaying…

IMPORTANT NOTICE: some video conferencing sites will only work if they are allowed to autoplay...

If videos still autoplay try enabling proactive blocking for the site by either
    Clicking the 'Allow autoplay for...' menuitem until it's highlighted dark red.
    Adding 'Block (shadow)' autoplay exception for the site from the settings.

Features:
• Allow autoplay for websites
• Enable proactive blocking for websites
       Stop media autoplay in shadow dom (performance impact)
• Allow session autoplay for websites
       Stop only first autoplay for a continuous session in the website (for video sites like Dailymotion)
• Disable flash detection for websites
       Force sites to use their html5 player which can always be stopped. 
• Quick add-on enable/disable (left-dblclick)
• Play/Pause context menu item will show for covered video elements (ctrl+right-click to ensure default context) 

Release Notes:
¯¯¯¯¯¯¯¯¯¯¯¯¯¯
Version 1.9.8.1  10/9/2023
• Fixed popup menu.

Version 1.9.8  7/12/2022
• Fixed shadow for msn.

Version 1.9.7  6/9/2022
• Fixed context menu & popup.

Version 1.9.6  13/7/2022
• Added proactive blocking.

Version 1.9.5  25/2/2022
• Added exceptions import/export.

Version 1.9.4  26/7/2021
• tweaks...

Version 1.9.3  1/6/2021
• Improved jwplayer handling.

Version 1.9.1  14/3/2021
• Improved youtube handling.

Version 1.9.0  23/2/2021
• Added keyboard activation.
• Improved youtube handling.
• Improved site permissions interaction.

Version 1.8.7  30/1/2021
• Added deep nodes handling.

Version 1.8.5  17/1/2021
• Added strict blocking mode.
• Improved play rejection.                    

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

Tên AutoplayStopper AutoplayStopper
ID ejddcgojdblidajhngkogefpkknnebdh
URL Chính Thức https://chromewebstore.google.com/detail/autoplaystopper/ejddcgojdblidajhngkogefpkknnebdh
Mô tả Stops video autoplay gracefully.
Kích Thước Tệp 48.49 KB
Số Lần Cài Đặt 140,635
Phiên Bản Hiện Tại 1.9.8.1
Cập Nhật Lần Cuối 2023-09-10
Ngày Phát Hành 2020-06-13
Đánh Giá 4.07/5 Tổng số 523 Đánh Giá
Nhà Phát Triển yochaim
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp http://forums.mozillazine.org/viewtopic.php?f=48&t=1483305&start=1215
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "name": "AutoplayStopper",
    "version": "1.9.8.1",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "default_locale": "en",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "contextMenus",
        "storage",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon32.png"
        },
        "default_title": "AutoplayStopper",
        "default_popup": "skin\/popup.html",
        "browser_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/handler-utils.js",
                "content\/content.js"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "browser_style": true,
        "page": "skin\/options.html"
    },
    "devtools_page": "skin\/devtools.html?view=page",
    "optional_permissions": [
        "file:\/\/*\/*"
    ]
}