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開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載Search Predict for Trakt.tv擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | aelihdggbimbhmgnjghphaliainkknid |
官方網址 | 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" } } |