StackOverflow Search Tool

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

Cos'è StackOverflow Search Tool?

StackOverflow Search Tool è un'estensione di Chrome sviluppata da luyihan900225, e la sua funzione principale è "This extension helps to search on SO, and learn about your intention".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione StackOverflow Search Tool

Scarica i file di estensione StackOverflow Search Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome StackOverflow Search Tool StackOverflow Search Tool
ID hnjcboogacdbabimdiblilojlldfkhlm
URL Ufficiale https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm
Descrizione This extension helps to search on SO, and learn about your intention
Dimensione del File 159 KB
Conteggio Installazioni 93
Versione Corrente 3.0.3
Ultimo Aggiornamento 2016-11-09
Data di Pubblicazione 2016-11-09
Sviluppatore luyihan900225
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}