Rumble Tools

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

Cos'è Rumble Tools?

Rumble Tools è un'estensione di Chrome sviluppata da Hickory Projects, e la sua funzione principale è "Providing everyone with the tools to simplify and enhance their Rumble experience.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Rumble Tools

Scarica i file di estensione Rumble Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Rumble Tools Rumble Tools
ID ijeobnpiandoonpbgmmlcabnopmjbcgj
URL Ufficiale https://chromewebstore.google.com/detail/rumble-tools/ijeobnpiandoonpbgmmlcabnopmjbcgj
Descrizione Providing everyone with the tools to simplify and enhance their Rumble experience.
Dimensione del File 36.83 KB
Conteggio Installazioni 118
Versione Corrente 0.0.1
Ultimo Aggiornamento 2023-07-26
Data di Pubblicazione 2023-07-25
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Hickory Projects
Email [email protected]
Tipo di Pagamento in_app
URL della Pagina di Aiuto https://forms.gle/HcpZCmcaDjHMN52i7
Lingue Supportate 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\/*"
            ]
        }
    ]
}