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