Film Stack

A film queue for Netflix.

Film Stack क्या है?

Film Stack diego.varese द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A film queue for Netflix."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Film Stack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Instant Queue for Netflix.
For some reason unknown to all, some countries don't have the Instant Queue feature in Netflix. This extension allows you to add movies to a queue that lives in your browser.

Bookmark permissions are needed because the extension uses your bookmarks (the 'Film Stack movies' folder) to sync your queue across computers.

Please report any bugs you find in the comments, thanks!


Updates:

v1.5.0: Fixed for Netflix's new layout.

v1.4.2: Added domains movies1.netflix.com and movies2.netflix.com for users of unblock-us.com

v1.4.1: Adding Netflix movies now works in Genre pages.

v1.4.0: You can now add Netflix movies to your queue directly from the popups in the main Netflix page!

v1.3.3: Fixed plugin to work with the new Cuevana layout.

v1.3: Added filtering by Series or Movies and a search box. Fixing bug with some series in Netflix.

v1.2: Movies and TV series are now sorted by default. Movies that are already in your queue show "Added to Film Stack" in the movie's page.

v1.1: Now it works for TV series in Netflix. Fixed bug with movies with trailers in Netflix.                    

एक्सटेंशन की मूल जानकारी

नाम Film Stack Film Stack
ID gpcloglcoibdbkafhnmghmaeofdikpnm
आधिकारिक URL https://chromewebstore.google.com/detail/film-stack/gpcloglcoibdbkafhnmghmaeofdikpnm
विवरण A film queue for Netflix.
फ़ाइल का आकार 58.13 KB
स्थापना संख्या 4,527
वर्तमान संस्करण 1.5.2
अंतिम अपडेट 2014-10-04
प्रकाशन तिथि 2014-10-04
रेटिंग 3.81/5 कुल 36 रेटिंग्स
डेवलपर diego.varese
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Film Stack",
    "version": "1.5.2",
    "manifest_version": 2,
    "description": "A film queue for Netflix.",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "ico.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "ico.png",
        "48": "ico48.png",
        "128": "ico128.png"
    },
    "permissions": [
        "http:\/\/*.netflix.com\/*",
        "bookmarks"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/movies.netflix.com\/*",
                "*:\/\/movies1.netflix.com\/*",
                "*:\/\/movies2.netflix.com\/*"
            ],
            "js": [
                "jquery-1.6.4.min.js",
                "netflixHome.js"
            ]
        },
        {
            "matches": [
                "http:\/\/movies.netflix.com\/WiMovie\/*",
                "http:\/\/movies1.netflix.com\/WiMovie\/*",
                "http:\/\/movies2.netflix.com\/WiMovie\/*",
                "http:\/\/www.netflix.com\/WiMovie\/*"
            ],
            "js": [
                "jquery-1.6.4.min.js",
                "netflixMovie.js"
            ]
        }
    ]
}