polyfills for cross browser support
Do you have a legacy app designed for chrome and suddenly you have to support multiple browsers like IE10+, Firefox and Chrome. Then you will have to use polyfill library. There are few options...
@ tutorialhorizon
Do you have a legacy app designed for chrome and suddenly you have to support multiple browsers like IE10+, Firefox and Chrome. Then you will have to use polyfill library. There are few options...
Chrome apps written using webview are different than iFrames because webview is a separate process. With Selenium 2.20 it is possible to automate chrome apps written using webview. driver = webdriver.Chrome(desired_capabilities={‘chromeOptions’:{‘windowTypes’:[‘webview’]}}) driver.get(‘chrome://apps’) wait_for_new_window_to_appear() driver.switch_to.window(driver.window_handles[1])...
Solution 1 chrome.storage.local.get(‘key_name’, result => console.log(`${result.key_name}`)) Solution 2 Install the following extension https://chrome.google.com/webstore/detail/storage-area-explorer/ocfjjjjhkpapocigimmppepjgfdecjkb/ Open the dev tools for your chrome app You should see a new tab called Storage Explorer Storage Explorer will show...
Transfer your app code to Chrome book via Google Drive or USB Install the chrome-dev-editor editor from Google Web Store https://chrome.google.com/webstore/detail/chrome-dev-editor/pnoffddplpippgcfjdhbmhkofpnaalpg Open the project in the chrome dev editor Select the project and Click...
In your manifest.json { … “permissions”: [ “enterprise.deviceAttributes” ] } Execute the following code when your application loads. It will fetch the value of the device identifier of the directory API, that is generated...
If you are a chrome apps / extension developer, at some point you will realize how do I debug the background.js. How do I open the console for this application. Chrome has the following...
If you are an admin in the Google Admin Console and you want to Auto launch an application in kiosk mode on Chrome OS devices like chrome book and Chrome box. There is a...
If you want to publish an application / extension which is only available via links Does not appear in the chrome webstore in the search results You want to publish your application as Unlisted....
In chrome navigate to: chrome://settings/content Then select the following option: Let us know if you would like to learn more about chrome dev tools be leaving your comments.
If you are a privacy freak or wants to test how the sites behave when you deny access to the localstorage, here you can learn how to deny sites from accessing your localstorage. In...
Recent Comments