Rumble Tools
Providing everyone with the tools to simplify and enhance their Rumble experience.
Co je Rumble Tools?
Rumble Tools je rozšíření Chrome vyvinuté Hickory Projects, a jeho hlavní funkcí je „Providing everyone with the tools to simplify and enhance their Rumble experience.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Rumble Tools
Stáhněte si soubory rozšíření Rumble Tools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Rumble Tools |
ID | ijeobnpiandoonpbgmmlcabnopmjbcgj |
Oficiální URL | https://chromewebstore.google.com/detail/rumble-tools/ijeobnpiandoonpbgmmlcabnopmjbcgj |
Popis | Providing everyone with the tools to simplify and enhance their Rumble experience. |
Velikost souboru | 36.83 KB |
Počet instalací | 118 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2023-07-26 |
Datum Vydání | 2023-07-25 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Hickory Projects |
[email protected] | |
Typ Platby | in_app |
URL Stránky Nápovědy | https://forms.gle/HcpZCmcaDjHMN52i7 |
Podporované Jazyky | 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\/*" ] } ] } |