Q360QuickSearch
This allows the user to do a quick search using the Q360 webclient.
Vad är Q360QuickSearch?
Q360QuickSearch är en Chrome-tillägg utvecklad av Solutions360, och dess huvudfunktion är "This allows the user to do a quick search using the Q360 webclient.".
Tilläggsskärmbilder
Ladda ner Q360QuickSearch-förlängningens CRX-fil
Ladda ner Q360QuickSearch-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
Grundläggande Information om Tillägg
Namn | Q360QuickSearch |
ID | cchagdmlljbeffcnifpplgjafdddjogd |
Officiell webbadress | https://chromewebstore.google.com/detail/q360quicksearch/cchagdmlljbeffcnifpplgjafdddjogd |
Beskrivning | This allows the user to do a quick search using the Q360 webclient. |
Filstorlek | 43.61 KB |
Antal Installationer | 69 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2019-02-06 |
Publiceringsdatum | 2019-01-31 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Solutions360 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://solutions360.com |
Stödda Språk | 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" ] } |