Quick Overflow
Quickly find, understand, and solve your JavaScript errors
什麼是Quick Overflow?
Quick Overflow是由https://noamhacker.com開發的Chrome擴展程式,該擴展的主要功能是“Quickly find, understand, and solve your JavaScript errors”。
擴展截圖
下載Quick Overflow擴展crx文件
下載Quick Overflow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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": [ " |