StackOverflow Search Tool
This extension helps to search on SO, and learn about your intention
Qu'est-ce que StackOverflow Search Tool ?
StackOverflow Search Tool est une extension Chrome développée par luyihan900225, et sa fonction principale est "This extension helps to search on SO, and learn about your intention".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension StackOverflow Search Tool
Téléchargez les fichiers d'extension StackOverflow Search Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A useful tool to help you search on stackoverflow whenever you need. You will also help us to learn about programming learning behavior by sharing your search behavior.
Informations de Base sur l'Extension
Nom | |
ID | hnjcboogacdbabimdiblilojlldfkhlm |
URL Officiel | https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm |
Description | This extension helps to search on SO, and learn about your intention |
Taille du Fichier | 159 KB |
Nombre d'Installations | 93 |
Version Actuelle | 3.0.3 |
Dernière Mise à Jour | 2016-11-09 |
Date de Publication | 2016-11-09 |
Développeur | luyihan900225 |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow Search Tool", "description": "This extension helps to search on SO, and learn about your intention", "version": "3.0.3", "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/*", "https:\/\/www.google.com\/*" ], "js": [ "jquery-2.1.4.min.js", "jquery.autocomplete.js", "record.js" ], "css": [ "jquery.autocomplete.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activeTab", "storage", "unlimitedStorage" ] } |