BestSuggest
The fastest way to find exactly what you’re looking for.
BestSuggest란 무엇입니까?
BestSuggest은(는) https://www.bestsuggest.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The fastest way to find exactly what you’re looking for."입니다.
확장 프로그램 스크린샷
BestSuggest 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
BestSuggest is the fastest way to find exactly what you’re looking for! Say goodbye to hours of researching and get top recommendations delivered to you within seconds. • Tab Grouping - Receive recommendations relevant to your current online interests – skip the tedious process of sifting through pages of search results and sorting through the noise. • Save Recommendations – Keep a list of your favorite recommendations, which are easily accessible within the BestSuggest Widget. • Similar Sites – Get a list of websites similar to the ones you're interested in. • Best Search Suggestion – Find out which search engine provides best results for your search query. Quickly preview and switch to the search engine you like the most. • Hit Snooze – Pause, resume and pick where you’d like your recommendations to appear from within your Settings. • Your privacy is a priority and we want to be present only when you want us to. You have the power to choose how and when you'd like us to appear. In order for BestSuggest to create a valuable experience with useful recommendations, access to the current page you're on is required.
확장 프로그램 기본 정보
이름 | BestSuggest |
ID | bbeoagdpiieajlcdebogffjjlfdgchni |
공식 URL | https://chromewebstore.google.com/detail/bestsuggest/bbeoagdpiieajlcdebogffjjlfdgchni |
설명 | The fastest way to find exactly what you’re looking for. |
파일 크기 | 539 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2022-12-16 |
출시 날짜 | 2021-12-08 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | https://www.bestsuggest.me |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.bestsuggest.me/ |
도움말 페이지 URL | https://www.bestsuggest.me/contact |
개인정보 보호 정책 페이지 URL | https://www.bestsuggest.me/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BestSuggest", "version": "1.2.3", "description": "The fastest way to find exactly what you\u2019re looking for.", "manifest_version": 3, "icons": { "256": "icons\/256x256.png", "128": "icons\/128x128.png", "64": "icons\/64x64.png", "48": "icons\/48x48.png", "38": "icons\/38x38.png", "32": "icons\/32x32.png", "19": "icons\/19x19.png", "16": "icons\/16x16.png" }, "permissions": [ "storage", "alarms", "tabGroups" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_end", "all_frames": false }, { "js": [ "site.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_start", "all_frames": true } ], "action": { "default_title": "", "default_popup": "popup\/index.html" } } |