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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |