StackOverflow Search Tool

This extension helps to search on SO, and learn about your intention

¿Qué es StackOverflow Search Tool?

StackOverflow Search Tool es una extensión de Chrome desarrollada por luyihan900225, y su función principal es "This extension helps to search on SO, and learn about your intention".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión StackOverflow Search Tool

Descarga archivos de extensión StackOverflow Search Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre StackOverflow Search Tool StackOverflow Search Tool
ID hnjcboogacdbabimdiblilojlldfkhlm
URL Oficial https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm
Descripción This extension helps to search on SO, and learn about your intention
Tamaño del Archivo 159 KB
Cantidad de Instalaciones 93
Versión Actual 3.0.3
Última Actualización 2016-11-09
Fecha de Publicación 2016-11-09
Desarrollador luyihan900225
Tipo de Pago free
Idiomas Soportados 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"
    ]
}