X-Ray Specs
Show the internals of a webpage
ما هو X-Ray Specs؟
X-Ray Specs هو إضافة Chrome تم تطويرها بواسطة http://red-robot.co.uk، والميزة الرئيسية لها هي "Show the internals of a webpage".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة X-Ray Specs
قم بتنزيل ملفات الامتداد X-Ray Specs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Quickly show the internal layout of a website.
معلومات أساسية عن التمديد
الاسم | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
الوصف | Show the internals of a webpage |
حجم الملف | 26.8 KB |
عدد التثبيتات | 36 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-06-07 |
تاريخ النشر | 2016-06-07 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | http://red-robot.co.uk |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "X-Ray Specs", "description": "Show the internals of a webpage", "version": "1.1", "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "tabs" ], "browser_action": { "default_icon": "i\/icon.png" }, "icons": { "128": "i\/x-ray_128x128.png" }, "web_accessible_resources": [ "css\/debug.css" ] } |