Rumble Tools

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

Rumble Tools क्या है?

Rumble Tools Hickory Projects द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Providing everyone with the tools to simplify and enhance their Rumble experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rumble Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}