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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Freek Bes และคุณลักษณะหลักของมันคือ "This extension adds search predictions (autocomplete) to the search bar in the header of Trakt.tv and your address bar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Predict for Trakt.tv
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |