Mobile Browser Simulator UserAgent Switcher

Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.

Mobile Browser Simulator UserAgent Switcherคืออะไร?

Mobile Browser Simulator UserAgent Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IBM MobileFirst Platform และคุณลักษณะหลักของมันคือ "Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mobile Browser Simulator UserAgent Switcher

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

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

                        IBM Mobile Browser Simulator UserAgent Switcher changes the useragent per device in the Mobile Browser Simulator. The UserAgent Switcher extension is for use in the IBM MobileFirst Mobile Browser Simulator only.                    

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

ชื่อ Mobile Browser Simulator UserAgent Switcher Mobile Browser Simulator UserAgent Switcher
ID dcljefehlpjmoefgoohaobehbenocmkg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg
คำอธิบาย Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.
ขนาดไฟล์ 47.07 KB
จำนวนการติดตั้ง 3,951
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2015-02-27
วันที่เผยแพร่ 2015-02-27
คะแนน 1.91/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา IBM MobileFirst Platform
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.ibm.com/developerworks/mobile/worklight/
URL หน้าช่วยเหลือ http://stackoverflow.com/questions/tagged/worklight
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.7",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "minimum_chrome_version": "17",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*MobileBrowserSimulator\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "lib\/dojo\/dojo.js",
                "observer.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "lib\/dojo\/dojo.js",
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "web_accessible_resources": [
        "dojo_useragent.js"
    ]
}