Posts

Showing posts with the label Chrome

Isaac Newton's Apple Falling Animation Effect using Google and Chrome DevTools

Image
Google has released an amazing animation effect that appears when you click on the apple on the page that appears when you search for " Isaac Newton " or " Sakura ." This is my simple try with a tiny JavaScript to create additional effects, like more apples falling automatically without clicking on the apple image. The effect appears on the screen as a live wallpaper. The JavaScript code used in the video tutorial is bellow, setInterval(function() { document.getElementsByClassName("smm4bb")[0].click(); }, 100); Note: To paste code into the terminal, enter "allow pasting" when requested. If you don't put "allow pasting," nothing will happen and no code will be pasted. The warning won't appear again after pasting permission has been granted.

Taking High Resolution Web-Page Screenshots on Chrome

Image
Google Chrome (or simply Chrome) is a free and fast web browser developed by Google . The currently released Chrome web browser comes with built-in functionality to take a screenshot of webpages without any add-ons. It allows taking a high-quality screenshots at high resolutions. Types of Screenshots The Chrome browser support taking 4 types of screenshots of a web page. Capture area screenshot - taking screenshot on specific region Capture full size screenshot - taking scrolling screenshot from top to bottom Capture node screenshot - taking screenshot of a specific HTML element Capture screenshot - taking full screen screenshot The Capture full size screenshot / Capture screenshot options are accessible via Chrome's developer tools (Ctrl+Shift+I). Furthermore, Capture area screenshot / Capture node screenshot options are accessible via Run command (Ctrl+Shift+P) by entering command “ screenshot ”. The video tutorial below demonstrates...