Target Search

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

Target Search क्या है?

Target Search orduani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily locate the text you searched from google's results page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Target Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}