Spider Search
Uses Google to perform a website-wide search
Vad är Spider Search?
Spider Search är en Chrome-tillägg utvecklad av JasonMan, och dess huvudfunktion är "Uses Google to perform a website-wide search".
Tilläggsskärmbilder
Ladda ner Spider Search-förlängningens CRX-fil
Ladda ner Spider Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
# 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. Grundläggande Information om Tillägg
| Namn | |
| ID | fkajnlmefmnbgkgjenklnmlamennphlp |
| Officiell webbadress | https://chromewebstore.google.com/detail/spider-search/fkajnlmefmnbgkgjenklnmlamennphlp |
| Beskrivning | Uses Google to perform a website-wide search |
| Filstorlek | 328 KB |
| Antal Installationer | 36 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2019-03-20 |
| Publiceringsdatum | 2019-03-15 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | JasonMan |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |