Warn On Tab With Sound Closure

On attempt to close an audible tab, prompts the user for the confirmation.

Warn On Tab With Sound Closure là gì?

Warn On Tab With Sound Closure là một tiện ích mở rộng Chrome được phát triển bởi Andrey Shevyakov, và tính năng chính của nó là "On attempt to close an audible tab, prompts the user for the confirmation.".

Ả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 Warn On Tab With Sound Closure

Tải xuống các tệp mở rộng Warn On Tab With Sound Closure 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

                        On attempt to close an audible tab, prompts the user for the confirmation. Don't accidentally close your music streams anymore! 

HOW TO USE:
When the extension is installed, please refresh the required tabs so that they are detectable by this extension. From now on, the extension will be listening for the tabs playing any sounds and prompting the user with the closure confirmation message on the tab closure attempt. Should the user wish to turn off the notifications, they can do so by clicking the extension icon in the toolbar and clicking the "Turn Off" button. The notifications can be turned back on again in the same manner. For the owners of the outdated hardware, the "Low End PC Mode" option is available (the checkbox can be checked from the extension pop-up) and it allows to free up some (albeit, quite little) computational resources, which might be crucial to performance on some configurations.

PERMISSIONS:
• activeTab - allows the extension to check if the current tab is playing any sounds
• tabs - allows the extension to check if the currently opened tabs are playing any sounds
• storage - allows the extension to store the enabled / disabled audibility check status and the low end PC mode enabled / disabled status

VERSION CHANGES:
Version 1.1 - bug fixes, low end PC mode (utilizes less hardware resources).
Version 1.2 - CSS

DISCLAIMER: 
the product is not affiliated with or endorsed by Youtube™ in any way and the screenshots containing the Youtube™ brand imagery are used solely for the demonstration purposes.                    

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

Tên Warn On Tab With Sound Closure Warn On Tab With Sound Closure
ID jnheopnbicedafbmamohfffmafdcjelb
URL Chính Thức https://chrome.google.com/webstore/detail/warn-on-tab-with-sound-cl/jnheopnbicedafbmamohfffmafdcjelb
Mô tả On attempt to close an audible tab, prompts the user for the confirmation.
Kích Thước Tệp 25.75 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2017-09-07
Ngày Phát Hành 2017-09-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Andrey Shevyakov
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://zitri.tech/privacy/chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Warn On Tab With Sound Closure",
    "short_name": "WarnOnTabWithSoundClosure",
    "description": "On attempt to close an audible tab, prompts the user for the confirmation.",
    "version": "1.2",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "Warn On Tab With Sound Closure"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}