ShuffleFlix - Netflix Random Episode Button
This chrome extension adds a random episode button to Netflix.
ShuffleFlix - Netflix Random Episode Buttonとは何ですか?
ShuffleFlix - Netflix Random Episode Buttonはhttps://www.flixed.ioによって開発されたChromeの拡張機能で、その主な機能は「This chrome extension adds a random episode button to Netflix.」です。
拡張機能のスクリーンショット
ShuffleFlix - Netflix Random Episode Button拡張機能のCRXファイルをダウンロード
ShuffleFlix - Netflix Random Episode Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Here's how you use ShuffleFlix.
1. Install the extension.
2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button.
3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too.
Enjoy!
Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting. 拡張機能の基本情報
| 名前 | |
| ID | copfkimibpnfpdggfjencnehgfgmpphf |
| 公式URL | https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf |
| 説明 | This chrome extension adds a random episode button to Netflix. |
| ファイルサイズ | 423 KB |
| インストール数 | 1,659 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2019-06-16 |
| 公開日 | 2019-06-16 |
| 評価 | 3.72/5 合計 18 レビュー |
| 開発者 | https://www.flixed.io |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://flixed.io |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ShuffleFlix - Netflix Random Episode Button",
"version": "1.0.0",
"version_name": "1.0.0",
"description": "This chrome extension adds a random episode button to Netflix.",
"icons": {
"128": "\/img\/logo.png"
},
"browser_action": {
"default_icon": "\/img\/logo.png",
"default_popup": "\/pages\/popup\/index.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.netflix.com\/*"
],
"js": [
"\/js\/main_content_script.js"
]
}
],
"permissions": [
"https:\/\/www.netflix.com\/*"
],
"web_accessible_resources": [
"\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'"
} | |