Amazing Searcher

Add useful information to Google Search results

Amazing Searcher란 무엇입니까?

Amazing Searcher은(는) eetann에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add useful information to Google Search results"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Amazing Searcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Amazing Searcher adds the following link to the Google search results.

* `Term`: restrict results to a specific time period
* `Lang`: restrict results to a specific language
* `Recipe`: following link about search words.
  * Homepage
  * Reference
  * Search By Reference (Search in Reference by Reference)
  * Search By Google (Search in Reference by Google)
  * The link you registered on the settings page
  * The Memo you registered on the settings page

`Term`, `Lang` and `Recipe` can be set in the options page.

In particular, by setting up a lot of `Recipe`, you can greatly reduce the time it takes to get to the information you want!                    

확장 프로그램 기본 정보

이름 Amazing Searcher Amazing Searcher
ID poheekmlppakdboaalpmhfpbmnefeokj
공식 URL https://chromewebstore.google.com/detail/amazing-searcher/poheekmlppakdboaalpmhfpbmnefeokj
설명 Add useful information to Google Search results
파일 크기 408 KB
설치 횟수 833
현재 버전 1.0.2
최근 업데이트 2021-11-09
출시 날짜 2021-05-31
평점 5.00/5 총 5 개의 평점
개발자 eetann
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eetann/amazing-searcher
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amazing Searcher",
    "version": "1.0.2",
    "description": "Add useful information to Google Search results",
    "author": "eetann",
    "icons": {
        "16": "imgs\/extension_icon16.png",
        "32": "imgs\/extension_icon32.png",
        "48": "imgs\/extension_icon48.png",
        "128": "imgs\/extension_icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search?*"
            ],
            "css": [
                "chunk.css"
            ],
            "js": [
                "chunk.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html"
}