Quick Overflow
Quickly find, understand, and solve your JavaScript errors
ما هو Quick Overflow؟
Quick Overflow هو إضافة Chrome تم تطويرها بواسطة https://noamhacker.com، والميزة الرئيسية لها هي "Quickly find, understand, and solve your JavaScript errors".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Quick Overflow
قم بتنزيل ملفات الامتداد Quick Overflow بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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": [ " |