Random Episodes Generator
This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).
Random Episodes Generator là gì?
Random Episodes Generator là một tiện ích mở rộng Chrome được phát triển bởi Jasshtag, và tính năng chính của nó là "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Random Episodes Generator
Tải xuống các tệp mở rộng Random Episodes Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
With this extension, users can play a random episode of The Simpsons, and The Office (among other series), because those series have a large catalog of episodes, users will be allowed to enjoy them without worrying of pick an episode. The providers of the episodes are the platforms Disney + and Star + (for LATAM users), so subscriptions to that services are required to see the episodes and are not linked to this extension. Now the extension autoplay another random episode instead of the next one.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Random Episodes Generator |
ID | cphgomachciegklpciofndoakgofgiea |
URL Chính Thức | https://chromewebstore.google.com/detail/random-episodes-generator/cphgomachciegklpciofndoakgofgiea |
Mô tả | This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users). |
Kích Thước Tệp | 772 KB |
Số Lần Cài Đặt | 134 |
Phiên Bản Hiện Tại | 0.9.3 |
Cập Nhật Lần Cuối | 2022-10-18 |
Ngày Phát Hành | 2022-07-23 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Jasshtag |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Random Episodes Generator", "description": "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).", "version": "0.9.3", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "tabs" ], "action": { "default_popup": "\/src\/episodes_generator\/popup.html", "default_icon": { "16": "\/images\/get_started16.png", "32": "\/images\/get_started32.png", "48": "\/images\/get_started48.png", "128": "\/images\/get_started128.png" } }, "icons": { "16": "\/images\/get_started16.png", "32": "\/images\/get_started32.png", "48": "\/images\/get_started48.png", "128": "\/images\/get_started128.png" }, "web_accessible_resources": [ { "resources": [ "scripts\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.starplus.com\/*\/video\/*", "*:\/\/www.disneyplus.com\/video\/*" ], "js": [ "scripts\/random_helper.js", "scripts\/autoplay.js" ], "run_at": "document_end" } ] } |