Rumble Tools

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

Rumble Toolsคืออะไร?

Rumble Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hickory Projects และคุณลักษณะหลักของมันคือ "Providing everyone with the tools to simplify and enhance their Rumble experience."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rumble Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}