Rumble Tools
Providing everyone with the tools to simplify and enhance their Rumble experience.
Rumble Tools là gì?
Rumble Tools là một tiện ích mở rộng Chrome được phát triển bởi Hickory Projects, và tính năng chính của nó là "Providing everyone with the tools to simplify and enhance their Rumble experience.".
Ả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 Rumble Tools
Tải xuống các tệp mở rộng Rumble Tools 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
Rumble Tools is completely free to use providing extra features to the Rumble website. Features: - Toggle Autoplay on videos - Download videos in MP4 format - Decide whether to show these features or not on the Options page. Supporting Rumble Tools: As an independent developer, your support is greatly appreciated. It fuels this extension's continued development and maintenance, encouraging me to deliver ongoing updates and enhancements.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rumble Tools |
ID | ijeobnpiandoonpbgmmlcabnopmjbcgj |
URL Chính Thức | https://chromewebstore.google.com/detail/rumble-tools/ijeobnpiandoonpbgmmlcabnopmjbcgj |
Mô tả | Providing everyone with the tools to simplify and enhance their Rumble experience. |
Kích Thước Tệp | 36.83 KB |
Số Lần Cài Đặt | 118 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2023-07-26 |
Ngày Phát Hành | 2023-07-25 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Hickory Projects |
[email protected] | |
Loại Thanh Toán | in_app |
URL Trang Trợ Giúp | https://forms.gle/HcpZCmcaDjHMN52i7 |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Rumble Tools", "description": "Providing everyone with the tools to simplify and enhance their Rumble experience.", "version": "0.0.1", "permissions": [ "storage" ], "background": { "service_worker": "scripts\/background.js" }, "action": { "default_title": "Rumble Tools" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "icons": { "16": "icons\/rumble-tools-icon-16.png", "48": "icons\/rumble-tools-icon-48.png", "128": "icons\/rumble-tools-icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "dist\/ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/rumble.com\/*", "https:\/\/www.rumble.com\/*" ], "js": [ "utils\/settings.js", "utils\/tooltip.js", "utils\/download.js", "utils\/injector.js", "scripts\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "icons\/rumbletools-autoplay.png", "icons\/rumbletools-autoplay-green.png", "icons\/rumbletools-download.png" ], "matches": [ "https:\/\/rumble.com\/*", "https:\/\/www.rumble.com\/*" ] } ] } |