Target Search

Easily locate the text you searched from google's results page.

Target Search란 무엇입니까?

Target Search은(는) orduani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily locate the text you searched from google's results page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Target Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Improve your productivity when searching google! Google gives you 1-2 gray lines in each search result, with this extension you can click on them and redirect to the page with auto-scroll to the exact sentence you saw on the gray lines.

*Give it a try, it will change the way you search!*

Features:
* Makes the gray lines in google's search linkable 
* Placing a small target icon near the text you search
* Flashing with the target icon and the paragraph background
* Support all languages, including RTL

Found bugs? Please use the "support" tab in google web store before leaving a negative feedback.                    

확장 프로그램 기본 정보

이름 Target Search Target Search
ID nohmjponpgbnhjokbmagdbnjpnmdaigb
공식 URL https://chrome.google.com/webstore/detail/target-search/nohmjponpgbnhjokbmagdbnjpnmdaigb
설명 Easily locate the text you searched from google's results page.
파일 크기 154 KB
설치 횟수 199
현재 버전 0.9.16
최근 업데이트 2019-04-24
출시 날짜 2019-04-24
평점 4.05/5 총 22 개의 평점
개발자 orduani
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Target Search",
    "version": "0.9.16",
    "manifest_version": 2,
    "description": "Easily locate the text you searched from google's results page.",
    "icons": {
        "16": "assets\/media\/icons\/icon16.png",
        "48": "assets\/media\/icons\/icon48.png",
        "128": "assets\/media\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "browser_action": {
        "default_popup": "assets\/pages\/popup.html"
    },
    "permissions": [
        "tabs",
        "",
        "storage",
        "identity",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app.js"
            ],
            "css": [
                "assets\/css\/styles.css",
                "assets\/css\/styles-rtl.css"
            ]
        }
    ]
}