Mobrem
Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
ما هو Mobrem؟
Mobrem هو إضافة Chrome تم تطويرها بواسطة nkemcels، والميزة الرئيسية لها هي "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mobrem
قم بتنزيل ملفات الامتداد Mobrem بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Mobrem enhances developer experience by emulating mobile browsers, enabling mostly developers to efficiently test their web pages on various screen sizes, including the portrait and landscape orientations without having to regularly toggle the DevTools.
معلومات أساسية عن التمديد
الاسم | |
ID | ioejcchhffpmcjkjmkkgpndhobjbdgml |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml |
الوصف | Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes |
حجم الملف | 103 KB |
عدد التثبيتات | 1,265 |
النسخة الحالية | 1.5.3 |
آخر تحديث | 2020-04-08 |
تاريخ النشر | 2020-04-05 |
تقييم | 3.40/5 مجموع تقييمات 5 |
المطور | nkemcels |
نوع الدفع | free |
موقع الإضافة | http://www.celsoppe.com |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mobrem", "description": "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes", "version": "1.5.3", "icons": { "128": "images\/icon_128.png", "48": "images\/icon_48.png", "16": "images\/icon_16.png" }, "browser_action": { "default_title": "Mobrem for responsive design", "default_icon": "images\/icon_20.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "emulator.js" ], "css": [ "emulator.css" ] } ], "background": { "scripts": [ "background_script.js" ], "persistent": true }, "permissions": [ "activeTab", "storage" ] } |