RantStats Extension for Rumble.com

Add support for capturing paid Rumble Rants for Rumble.com livestreams.

RantStats Extension for Rumble.comคืออะไร?

RantStats Extension for Rumble.com เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rantstats.com และคุณลักษณะหลักของมันคือ "Add support for capturing paid Rumble Rants for Rumble.com livestreams."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RantStats Extension for Rumble.com

ดาวน์โหลดไฟล์ส่วนขยาย RantStats Extension for Rumble.com ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add support for capturing the paid Rumble Rants for Rumble.com live streams.
Rants are shown past their normal expiration date in the chat.

Rants can be shown as a sidebar on the stream page or in a separate window. After a stream ends, cached data can be viewed by loading the stream page again. If no Rants were captured during the stream, the sidebar or separate window will note this.

Additionally, all cached data can be viewed and managed from the Cached Rants page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RantStats Extension for Rumble.com RantStats Extension for Rumble.com
ID liahjgfmodjgeakahommamnmbjgicpmh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rantstats-extension-for-r/liahjgfmodjgeakahommamnmbjgicpmh
คำอธิบาย Add support for capturing paid Rumble Rants for Rumble.com livestreams.
ขนาดไฟล์ 64.31 KB
จำนวนการติดตั้ง 129
เวอร์ชันปัจจุบัน 1.4.4
อัปเดตครั้งล่าสุด 2023-09-06
วันที่เผยแพร่ 2022-11-15
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://rantstats.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/rantstats/rantstats-extension/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RantStats Extension for Rumble.com",
    "version": "1.4.4",
    "description": "Add support for capturing paid Rumble Rants for Rumble.com livestreams.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "background": {
        "service_worker": "pages\/background\/background.js"
    },
    "options_page": "pages\/options\/options.html",
    "action": {
        "default_popup": "pages\/options\/options.html#popup",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css",
                "components\/open-chat\/open-chat.css",
                "components\/rants\/rants.css",
                "components\/rants\/rant.css",
                "pages\/options\/options.css",
                "pages\/rants\/rants.css"
            ],
            "js": [
                "pages\/content\/content.js"
            ],
            "matches": [
                "https:\/\/rumble.com\/v*",
                "https:\/\/rumble.com\/chat\/popup\/*",
                "https:\/\/rumble.com\/_rantstats*"
            ]
        }
    ]
}