Advanced Search
Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.
Advanced Search क्या है?
Advanced Search Mac Gainor द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Advanced Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds a simple interface to write precise search queries for google, google-scholar, wikipedia, and youtube.
After installing, use `Ctrl+Shift+F` to toggle the search window.
Try `Tab` and `Shift+Tab` to manipulate inputs.
Try `UpArrow` and `DownArrow` to navigate the selected search engine.
Use `Enter` to submit your search.
If the extension doesn't work immediately, try restarting your browser. एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | elgfhefgbaekbebmlmdhildnlhinmnak |
| आधिकारिक URL | https://chrome.google.com/webstore/detail/advanced-search/elgfhefgbaekbebmlmdhildnlhinmnak |
| विवरण | Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window. |
| फ़ाइल का आकार | 150 KB |
| स्थापना संख्या | 577 |
| वर्तमान संस्करण | 0.1.3 |
| अंतिम अपडेट | 2017-11-05 |
| प्रकाशन तिथि | 2017-11-05 |
| रेटिंग | 4.50/5 कुल 8 रेटिंग्स |
| डेवलपर | Mac Gainor |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| एक्सटेंशन वेबसाइट | https://github.com/mac-s-g/chrome-advanced-search |
| समर्थित भाषाएँ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Advanced Search",
"description": "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.",
"version": "0.1.3",
"icons": {
"16": "images\/search-icon-16.png",
"48": "images\/search-icon-48.png",
"128": "images\/search-icon-128.png"
},
"browser_action": {
"default_title": "Open Advanced Search"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"style\/content.css"
],
"js": [
"js\/dependencies\/[email protected]",
"js\/content.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"js\/background.js"
]
},
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [
"style\/content.css",
"style\/fonts\/Roboto-Regular.ttf",
"images\/google-logo-scaled.png",
"images\/wikipedia-logo-scaled.png",
"images\/youtube-logo-scaled.png",
"images\/google-scholar-logo-scaled.png"
]
} | |