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ファイルをダウンロード

Target Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            ]
        }
    ]
}