Rumble Tools
Providing everyone with the tools to simplify and enhance their Rumble experience.
Rumble Toolsとは何ですか?
Rumble ToolsはHickory Projectsによって開発されたChromeの拡張機能で、その主な機能は「Providing everyone with the tools to simplify and enhance their Rumble experience.」です。
拡張機能のスクリーンショット
Rumble Tools拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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\/*" ] } ] } |