Search Predict for Trakt.tv

This extension adds search predictions (autocomplete) to the search bar in the header of Trakt.tv and your address bar.

Search Predict for Trakt.tv क्या है?

Search Predict for Trakt.tv Freek Bes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds search predictions (autocomplete) to the search bar in the header of Trakt.tv and your address bar."।

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

screenshot
screenshot

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

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

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

                        Are you tired of having to enter the full title of a movie or show you're searching for on Trakt.tv and then having to press search? Try this extension!

With this extension installed, you will find it's much easier to search for items. When you start typing in the search field on Trakt.tv, the extension will add a list of predictions for your search. If the show or movie you're searching for is in the list, you can now click it and it will be loaded right away. Much better, right?

To use this extension in your address bar, start your search with the letter "t". For example: "t silicon valley".                    

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

नाम Search Predict for Trakt.tv Search Predict for Trakt.tv
ID aelihdggbimbhmgnjghphaliainkknid
आधिकारिक URL https://chromewebstore.google.com/detail/search-predict-for-traktt/aelihdggbimbhmgnjghphaliainkknid
विवरण This extension adds search predictions (autocomplete) to the search bar in the header of Trakt.tv and your address bar.
फ़ाइल का आकार 34.35 KB
स्थापना संख्या 287
वर्तमान संस्करण 1.2.3
अंतिम अपडेट 2024-02-02
प्रकाशन तिथि 2020-05-28
रेटिंग 4.50/5 कुल 6 रेटिंग्स
डेवलपर Freek Bes
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/FreekBes/trakt_search_predict
सहायता पृष्ठ URL https://github.com/FreekBes/trakt_search_predict/issues
गोपनीयता नीति पृष्ठ URL https://github.com/FreekBes/trakt_search_predict/blob/master/PRIVACY-POLICY.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Predict for Trakt.tv",
    "short_name": "Search Predict for Trakt.tv",
    "version": "1.2.3",
    "version_name": "1.2.3",
    "description": "This extension adds search predictions (autocomplete) to the search bar in the header of Trakt.tv and your address bar.",
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "64": "images\/logo64.png",
        "96": "images\/logo96.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.trakt.tv\/*",
        "*:\/\/image.tmdb.org\/*",
        "*:\/\/api.themoviedb.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.trakt.tv\/*"
            ],
            "js": [
                "search_predict.js"
            ],
            "css": [
                "search_predict.css"
            ]
        }
    ],
    "background": {
        "service_worker": "sw.js"
    },
    "omnibox": {
        "keyword": "t"
    }
}