Quick Overflow
Quickly find, understand, and solve your JavaScript errors
Quick Overflow क्या है?
Quick Overflow https://noamhacker.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly find, understand, and solve your JavaScript errors"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quick Overflow एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Quick Overflow |
ID | kjjiidpkmljgchgkcjlbcbjbaangmobk |
आधिकारिक URL | https://chromewebstore.google.com/detail/quick-overflow/kjjiidpkmljgchgkcjlbcbjbaangmobk |
विवरण | Quickly find, understand, and solve your JavaScript errors |
फ़ाइल का आकार | 57.43 KB |
स्थापना संख्या | 22 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2016-04-24 |
प्रकाशन तिथि | 2016-04-24 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | https://noamhacker.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/noamhacker/quick-overflow |
सहायता पृष्ठ URL | https://github.com/noamhacker/quick-overflow/blob/master/README.md |
समर्थित भाषाएँ | 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": [ " |