Debugger Shortcut
Stop javascript execution by pressing a keyboard shortcut.
ما هو Debugger Shortcut؟
Debugger Shortcut هو إضافة Chrome تم تطويرها بواسطة http://vadim.sikora.name، والميزة الرئيسية لها هي "Stop javascript execution by pressing a keyboard shortcut.".
تحميل ملف CRX للإضافة Debugger Shortcut
قم بتنزيل ملفات الامتداد Debugger Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page. Works for iframes and nested iframes as well. Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/
معلومات أساسية عن التمديد
الاسم | |
ID | gjaeepjbfieiimehgjfpmaffegliiaea |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea |
الوصف | Stop javascript execution by pressing a keyboard shortcut. |
حجم الملف | 8.93 KB |
عدد التثبيتات | 29 |
النسخة الحالية | 0.2.5 |
آخر تحديث | 2017-06-24 |
تاريخ النشر | 2017-06-24 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | http://vadim.sikora.name |
نوع الدفع | free |
موقع الإضافة | https://github.com/vxsx/debugger-shortcut-extension |
عنوان صفحة المساعدة | https://github.com/vxsx/debugger-shortcut-extension/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Debugger Shortcut", "version": "0.2.5", "manifest_version": 2, "description": "Stop javascript execution by pressing a keyboard shortcut.", "homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon38.png", "default_title": "Options for Debugger Shortcut.", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |