Flix Trix!

Tools for your streaming services. Works with Netflix, Amazon, and Disney+!

Τι είναι το Flix Trix!;

Το Flix Trix! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Flix Trix, και η κύρια λειτουργία του είναι "Tools for your streaming services. Works with Netflix, Amazon, and Disney+!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Flix Trix!

Λήψη αρχείων επέκτασης Flix Trix! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Flix Trix is a new extension designed to provide a number of tools to enhance your experiences with your streaming services.

Currently, Flix Trix allows you to compare your Netflix, Disney+ and Amazon Prime Video watchlists with another local profile to find items on both lists. So you don't have to look through both of your lists to figure out what you both want to watch.

Flix Trix also allows you to filter these items by TV shows/Movies, this currently works for Amazon Prime Video.

It also selects a few items at random, if you’d rather leave the decision up to the universe!

V1.1.3
Current Features:
Comparing two lists to find matches
Force continue watching to top of home
Select three matches at random
Filter matches based on media type (TV show or Movie)

Current Services Flix Trix works on:
Netflix
Disney+
Amazon Prime Video

How to use:

Finding shared items:
1. Install the extension by clicking the "Add to chrome" button above
2. Navigate to person 1's watchlist ( e.g https://www.netflix.com/browse/my-list )
3. Click the extension icon to open the popup
4. Click one of the "Load List" buttons to load your list into the extension
5. Navigate to person 2's watchlist
6. Open the popup and load person 2's list using the other "Load List" button
7. A new button "Find Matches" should appear underneath, click that button to find the items shared between your lists

Filter shared items (Prime Video only):
1. Follow the instructions above under 'Finding shared items'
2. After finding your shared items, there should be new buttons underneath that allow you to filter the list.

Force 'Continue watching' to the top:
1. Install the extension by clicking the "Add to chrome" button above
2. Click the extension icon to open the popup
3. Click the hamburger button in the top left, a new box should appear with a slider button
4. Click the slider button to enable the feature

Please send any bug reports to [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Flix Trix! Flix Trix!
ID innnfgbpifgbnglcfdcmklifnjccbngi
Επίσημο URL https://chromewebstore.google.com/detail/flix-trix/innnfgbpifgbnglcfdcmklifnjccbngi
Περιγραφή Tools for your streaming services. Works with Netflix, Amazon, and Disney+!
Μέγεθος Αρχείου 41.28 KB
Αριθμός Εγκαταστάσεων 117
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2023-06-22
Ημερομηνία Δημοσίευσης 2021-02-26
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Flix Trix
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flix Trix!",
    "description": "Tools for your streaming services. Works with Netflix, Amazon, and Disney+!",
    "version": "1.1.3",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Flix Trix!"
    },
    "permissions": [
        "storage",
        "webNavigation",
        "*:\/\/www.netflix.com\/browse\/my-list",
        "*:\/\/www.netflix.com\/browse",
        "*:\/\/www.disneyplus.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/browse\/my-list"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.netflix.com\/browse"
            ],
            "js": [
                "continue_watching_to_top.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/www.disneyplus.com\/*"
            ],
            "js": [
                "continue_watching_to_top.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/www.disneyplus.com\/*\/watchlist"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/gp\/video\/mystuff\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/gp\/video\/storefront\/*"
            ],
            "js": [
                "continue_watching_to_top.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}