StackOverflow Search Tool

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

What is StackOverflow Search Tool?

StackOverflow Search Tool is a Chrome extension developed by luyihan900225, and its main feature is "This extension helps to search on SO, and learn about your intention".

Extension Screenshots

screenshot

Download StackOverflow Search Tool Extension CRX File

Download StackOverflow Search Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name StackOverflow Search Tool StackOverflow Search Tool
ID hnjcboogacdbabimdiblilojlldfkhlm
Official URL https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm
Description This extension helps to search on SO, and learn about your intention
File Size 159 KB
Installation Count 93
Current Version 3.0.3
Last Updated 2016-11-09
Publish Date 2016-11-09
Developer luyihan900225
Payment Type free
Supported Languages 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"
    ]
}