Spider Search
Uses Google to perform a website-wide search
Что такое Spider Search?
Spider Search - это расширение Chrome, разработанное JasonMan, и его основная функция - "Uses Google to perform a website-wide search".
Снимки экрана расширения
Скачать файл CRX расширения Spider Search
Скачайте файлы расширений Spider Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
# Spider Search
Performs a website-wide search.
Useful for sites without a built-in search function
## Google based search
Use google to perform a website-wide search.
Might fail if used excessively
## Non-Google based search (Crawl based)
Uses a crawler to search through the site.
Slower, and will provide worse results than a Google based search.
Available offline. Основная информация о расширении
| Название | |
| ID | fkajnlmefmnbgkgjenklnmlamennphlp |
| Официальный URL | https://chromewebstore.google.com/detail/spider-search/fkajnlmefmnbgkgjenklnmlamennphlp |
| Описание | Uses Google to perform a website-wide search |
| Размер файла | 328 KB |
| Количество установок | 36 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2019-03-20 |
| Дата публикации | 2019-03-15 |
| Рейтинг | 1.00/5 Всего 1 оценок |
| Разработчик | JasonMan |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spider Search",
"version": "1.1",
"description": "Uses Google to perform a website-wide search",
"permissions": [
"storage",
"activeTab",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/spider16.png",
"32": "images\/spider32.png",
"48": "images\/spider48.png",
"128": "images\/spider128.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
}
}
},
"icons": {
"16": "images\/spider16.png",
"32": "images\/spider32.png",
"48": "images\/spider48.png",
"128": "images\/spider128.png"
},
"manifest_version": 2
} | |