Rumble Tools

Providing everyone with the tools to simplify and enhance their Rumble experience.

什么是Rumble Tools?

Rumble Tools是由Hickory Projects开发的Chrome扩展程序,该扩展的主要功能是“Providing everyone with the tools to simplify and enhance their Rumble experience.”。

扩展截图

screenshot
screenshot

下载Rumble Tools扩展crx文件

下载Rumble Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Rumble Tools Rumble Tools
ID ijeobnpiandoonpbgmmlcabnopmjbcgj
官方URL https://chromewebstore.google.com/detail/rumble-tools/ijeobnpiandoonpbgmmlcabnopmjbcgj
简介 Providing everyone with the tools to simplify and enhance their Rumble experience.
文件大小 36.83 KB
安装次数 118
当前版本 0.0.1
更新时间 2023-07-26
上架时间 2023-07-25
评分 5.00/5 共2次评分
开发者 Hickory Projects
电子邮箱 [email protected]
付费类型 in_app
帮助页面URL https://forms.gle/HcpZCmcaDjHMN52i7
支持的语言 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\/*"
            ]
        }
    ]
}