Mute Everything
Mutes everything by pausing all audio and video.
Mute Everything là gì?
Mute Everything là một tiện ích mở rộng Chrome được phát triển bởi Bozozo, và tính năng chính của nó là "Mutes everything by pausing all audio and video.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mute Everything
Tải xuống các tệp mở rộng Mute Everything 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
Mute Everything stops all audio playing in your browser with a single click. Enjoy the silence! Do you ever find yourself scrolling through a bunch of tabs in search of that one video that's still playing? Simply press the Mute Everything button to pause it instantly. * This extension works by pausing all audio and video elements * Includes support for common music services (GrooveShark, Pandora, SoundCloud, and many more) * Works excellently with YouTube videos and HTML5 media * Plug-in objects can not be paused; they are inaccessible). Instead, such objects are temporarily removed, and can be individually restored with a single click. This extension is far from perfect... please report any problems through the Feedback page. Please don't use reviews to report specific bugs, as I cannot respond to those.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mute Everything |
ID | jcdccblikjhgpbjhfleoidoeildbcima |
URL Chính Thức | https://chromewebstore.google.com/detail/mute-everything/jcdccblikjhgpbjhfleoidoeildbcima |
Mô tả | Mutes everything by pausing all audio and video. |
Kích Thước Tệp | 42.14 KB |
Số Lần Cài Đặt | 551 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2014-01-25 |
Ngày Phát Hành | 2014-01-25 |
Đánh Giá | 1.88/5 Tổng số 34 Đánh Giá |
Nhà Phát Triển | Bozozo |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Everything", "version": "0.1", "author": "Arno van den Brink", "description": "Mutes everything by pausing all audio and video.", "offline_enabled": true, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle", "all_frames": true } ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon-19.png", "38": "img\/icon-38.png" }, "default_title": "Mute Everything!" } } |