Q360QuickSearch
This allows the user to do a quick search using the Q360 webclient.
Wat is Q360QuickSearch?
Q360QuickSearch is een Chrome-extensie ontwikkeld door Solutions360, en de belangrijkste functie is "This allows the user to do a quick search using the Q360 webclient.".
Extensie Screenshots
Download het CRX-bestand van de extensie Q360QuickSearch
Download Q360QuickSearch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | cchagdmlljbeffcnifpplgjafdddjogd |
| Officiële URL | https://chromewebstore.google.com/detail/q360quicksearch/cchagdmlljbeffcnifpplgjafdddjogd |
| Beschrijving | This allows the user to do a quick search using the Q360 webclient. |
| Bestandsgrootte | 43.61 KB |
| Aantal Installaties | 69 |
| Huidige Versie | 1.3 |
| Laatst Bijgewerkt | 2019-02-06 |
| Publicatiedatum | 2019-01-31 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Solutions360 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://solutions360.com |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Q360QuickSearch",
"description": "This allows the user to do a quick search using the Q360 webclient.",
"author": "Solutions 360",
"version": "1.3",
"homepage_url": "http:\/\/www.solutions360.com\/",
"content_scripts": [
{
"matches": [
"*:\/\/*\/controller.php?action=q360*",
"*:\/\/*\/controller.php?action=quicksearch*"
],
"js": [
"Q360QuickSearch.js"
]
}
],
"background": {
"scripts": [
"backend.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [
"contextMenus",
"tabs",
"activeTab"
]
} | |