Quick Overflow

Quickly find, understand, and solve your JavaScript errors

Qu'est-ce que Quick Overflow ?

Quick Overflow est une extension Chrome développée par https://noamhacker.com, et sa fonction principale est "Quickly find, understand, and solve your JavaScript errors".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Quick Overflow

Téléchargez les fichiers d'extension Quick Overflow 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

                        Every time Quick Overflow detects an error in your JavaScript, it embeds an "error module" at the top of your webpage. 
This module contains:
• an explanation of your error
• the code that caused it
• a one-click Stack Overflow search for relevant solutions.

The extension can listen for errors on any website, but can also be easily disabled for when you want to browse the web in peace.

*IMPORTANT*
Click the icon to enable the extension, and make sure to "Allow access to file URLs" by visiting chrome://extensions. This allows the extension to listen for errors when you are developing locally.

More info and usage guide here: https://github.com/noamhacker/quick-overflow                    

Informations de Base sur l'Extension

Nom Quick Overflow Quick Overflow
ID kjjiidpkmljgchgkcjlbcbjbaangmobk
URL Officiel https://chromewebstore.google.com/detail/quick-overflow/kjjiidpkmljgchgkcjlbcbjbaangmobk
Description Quickly find, understand, and solve your JavaScript errors
Taille du Fichier 57.43 KB
Nombre d'Installations 22
Version Actuelle 1.1
Dernière Mise à Jour 2016-04-24
Date de Publication 2016-04-24
Évaluation 4.67/5 Total 3 Évaluations
Développeur https://noamhacker.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/noamhacker/quick-overflow
URL de la Page d'Aide https://github.com/noamhacker/quick-overflow/blob/master/README.md
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Overflow",
    "description": "Quickly find, understand, and solve your JavaScript errors",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon3.png",
        "default_popup": "popup.html",
        "default_title": "enable\/disable"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "custom.css",
        "so-icon.png",
        "info-icon.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "custom.css"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}