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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mobrem

ดาวน์โหลดไฟล์ส่วนขยาย Mobrem ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mobrem Mobrem
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"
    ]
}