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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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 |
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" ] } |