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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mobile Browser Simulator UserAgent Switcher
قم بتنزيل ملفات الامتداد Mobile Browser Simulator UserAgent Switcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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/ |
عنوان صفحة المساعدة | 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" ] } |