Is there any way to activate Chrome’s DOM Distiller with a (console) Javascript?
Background: I have a software with an in-build Chromium. I have there no access to flags – but do have it to console.
>Solution :
Here’s how you can activate it using JavaScript:
Open the Chrome Developer Tools Console:
Press Ctrl + Shift + J (Windows/Linux) or Cmd + Option + J (Mac) to open the Developer Tools and go to the Console tab.
Paste and Execute the Following Script:
Copy the following JavaScript code and paste it into the Console, then press Enter to execute it:
javascript: (function() {
var uri = 'https://www.google.com/reader/view/?url=' + encodeURIComponent(window.location.href);
window.location.href = uri;
})();