Quick Search

Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.

Quick Search क्या है?

Quick Search https://serdar.work द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard."।

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

screenshot

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

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

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

                        Select a text and hit:

- Alt+S to search on Google
- Alt+W to search on Wikipedia
- Alt+T to search on Twitter
- Alt+A to search on Amazon

- You can change the shortcuts. Use "Keyboard shortcuts" in the Chrome extension settings to do that.

- Click on the extension icon to enable / disable the extension temporarily.

- Google Translate search is removed in Version 2.0, due to Chrome's maximum shortcut limit of 4. It will be added soon with the context menu search feature.

- Customizing the websites to search will be possible with the options feature in the next version.

- This extension does not mess with your data. You can view the full source code of this extension at GitHub: https://github.com/serd/quick-search                    

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

नाम Quick Search Quick Search
ID chgmjmpmfefgaiogdnnjbfcbgcflofgi
आधिकारिक URL https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi
विवरण Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
फ़ाइल का आकार 10.28 KB
स्थापना संख्या 887
वर्तमान संस्करण 2.0.2
अंतिम अपडेट 2022-05-08
प्रकाशन तिथि 2017-05-28
रेटिंग 3.67/5 कुल 9 रेटिंग्स
डेवलपर https://serdar.work
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://serdar.work
गोपनीयता नीति पृष्ठ URL https://serdar.work/chrome-extensions/privacy-policy.html
समर्थित भाषाएँ en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "search-google": {
            "description": "Search Google",
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        },
        "search-wikipedia": {
            "description": "Search Wikipedia",
            "suggested_key": {
                "default": "Alt+W",
                "mac": "Alt+W"
            }
        },
        "search-amazon": {
            "description": "Search Amazon",
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            }
        },
        "search-twitter": {
            "description": "Search Twitter",
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "homepage_url": "https:\/\/serdar.work"
}