Manuals Aid: Free Manuals & Repair Guides
This extension sets the default search to manualsaid.com in order to provide quick suggested results for product manuals.
Manuals Aid: Free Manuals & Repair Guides란 무엇입니까?
Manuals Aid: Free Manuals & Repair Guides은(는) https://manualsaid.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension sets the default search to manualsaid.com in order to provide quick suggested results for product manuals."입니다.
확장 프로그램 스크린샷
Manuals Aid: Free Manuals & Repair Guides 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
To find manuals: 1. Enter any query plus the word ‘manual’ into your address bar (e.g. printer manual) 2. View relevant suggested results for manuals 3. Select the ManualsAid suggested result (indicated by extension icon) to view the product or brand manual. Generic search results will be powered by Yahoo® Search. Permissions: Read and change your data on manualsaid.com - We require this to improve user experience and to provide the communicated functionality. By properly attributing user data with the source of origin, we ensure the product is made available to the correct user. This also helps us to identify spam and any abuse of our APIs and/or services. Change default search settings to our domain manualsaid.com with web search powered by Yahoo.We require this permission in order to configure the omnibox with this extension's product features. Disclaimer: By clicking the "Add to Chrome" button, I am agreeing to abide by the Terms of Service & Privacy Policy and to install this Chrome™ extension. Chrome is a trademark of Google LLC. Use of it here does not imply any affiliation with or endorsement by Google LLC. Yahoo is a registered trademark of Apollo Global Management Inc. Privacy Policy: https://manualsaid.com/common/privacypolicy.html Terms of Service: https://manualsaid.com/common/termsofservice.html
확장 프로그램 기본 정보
이름 | Manuals Aid: Free Manuals & Repair Guides |
ID | liikdjpijdmpgifhjndnfiejcpcoelkm |
공식 URL | https://chromewebstore.google.com/detail/manuals-aid-free-manuals/liikdjpijdmpgifhjndnfiejcpcoelkm |
설명 | This extension sets the default search to manualsaid.com in order to provide quick suggested results for product manuals. |
파일 크기 | 36.88 KB |
설치 횟수 | 38,511 |
현재 버전 | 1.0.0.5 |
최근 업데이트 | 2024-02-27 |
출시 날짜 | 2023-04-23 |
평점 | 2.67/5 총 3 개의 평점 |
개발자 | https://manualsaid.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.manualsaid.com |
개인정보 보호 정책 페이지 URL | https://manualsaid.com/common/privacypolicy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "service_worker": "serviceWorker\/serviceWorker.js" }, "name": "Manuals Aid: Free Manuals & Repair Guides", "short_name": "Manuals Aid: Free Manuals & Repair Guides", "icons": { "128": "icons\/coloured.png" }, "description": "This extension sets the default search to manualsaid.com in order to provide quick suggested results for product manuals.", "version": "1.0.0.5", "manifest_version": 3, "action": { "browser_style": true, "default_icon": { "128": "icons\/coloured.png" }, "default_title": "Manuals Aid: Free Manuals & Repair Guides" }, "permissions": [ "storage", "contextMenus", "declarativeNetRequestWithHostAccess", "alarms" ], "host_permissions": [ "*:\/\/manualsaid.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/manualsaid.com\/*" ], "run_at": "document_start", "js": [ "contentScript.js" ] }, { "matches": [ "*:\/\/manualsaid.com\/manualsaidwebsite\/*", "*:\/\/*.search.yahoo.com\/*" ], "js": [ "keepChanges.js" ], "run_at": "document_end" } ], "chrome_settings_overrides": { "search_provider": { "name": "web search by Yahoo", "keyword": "Manuals Aid", "favicon_url": "https:\/\/manualsaid.com\/newsdemo\/images\/searchico.png", "search_url": "https:\/\/manualsaid.com\/search.html?q={searchTerms}", "suggest_url": "https:\/\/manualsaid.com\/apps\/omniboxManualsSuggestion?q={searchTerms}", "encoding": "UTF-8", "is_default": true } } } |