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?
Random Episodes Generator是由Jasshtag開發的Chrome擴展程式,該擴展的主要功能是“This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).”。
擴展截圖
下載Random Episodes Generator擴展crx文件
下載Random Episodes Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Random Episodes Generator |
ID | cphgomachciegklpciofndoakgofgiea |
官方網址 | https://chromewebstore.google.com/detail/random-episodes-generator/cphgomachciegklpciofndoakgofgiea |
簡介 | This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users). |
檔案大小 | 772 KB |
安裝次數 | 134 |
目前版本 | 0.9.3 |
更新時間 | 2022-10-18 |
上架時間 | 2022-07-23 |
評分 | 5.00/5 共 6 次評分 |
開發者 | Jasshtag |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } ] } |