Search Center

Helps you search and highlight text on a web page. Supports keyboard shortcuts.

Search Center क्या है?

Search Center https://getsearchcenter.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you search and highlight text on a web page. Supports keyboard shortcuts."।

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

screenshot

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

crx प्रारूप में Search Center एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Search Center extension allows you to quickly search or highlight text on a web page. For more convenience, you can use hot keys.
To open the search window, just click on the extension icon in the upper-right corner of the browser, or use the keyboard shortcut: Alt + Shift + F.

Privacy Policy: https://getsearchcenter.com/privacy.html
Terms of Use: https://getsearchcenter.com/terms.html

By click on «Add to Chrome» button in the top right hand corner and installing Search Center extension, you are agreeing to install this extension, you are agreeing to our Privacy Policy, and you are agreeing to our Terms of Use.                    

एक्सटेंशन की मूल जानकारी

नाम Search Center Search Center
ID bibjjhmgoinhccohlihdcidipacbkolh
आधिकारिक URL https://chromewebstore.google.com/detail/search-center/bibjjhmgoinhccohlihdcidipacbkolh
विवरण Helps you search and highlight text on a web page. Supports keyboard shortcuts.
फ़ाइल का आकार 46.01 KB
स्थापना संख्या 24
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2021-09-26
प्रकाशन तिथि 2021-06-02
डेवलपर https://getsearchcenter.com
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://getsearchcenter.com/privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "manifest_version": 2,
    "name": "Search Center",
    "version": "1.0.3",
    "description": "Helps you search and highlight text on a web page. Supports keyboard shortcuts.",
    "icons": {
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "toolbar.html"
    ],
    "browser_action": [],
    "commands": {
        "toggle-toolbar": {
            "description": "Show\/hide toolbar",
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "highlight-text": {
            "description": "Highlight text",
            "suggested_key": {
                "default": "Alt+H"
            }
        },
        "find-next": {
            "description": "Find next",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "search-google": {
            "description": "Search in Google",
            "suggested_key": {
                "default": "Alt+G"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}