Welcome to Tesla Motors Club
Discuss Tesla's Model S, Model 3, Model X, Model Y, Cybertruck, Roadster and More.
Register

Paywall: Auto News: 100 EVs headed to the U.S. through 2024

This site may earn commission on affiliate links.

DanCar

Active Member
Oct 2, 2013
3,132
4,354
SF Bay Area
Here are (nearly) 100 EVs headed to the U.S. through 2024
There are better ways to get past the paywall (like subscribing, $1 for 4 weeks) but here is what I did:
  1. Use Chrome
  2. Use ad block extension
  3. Block everything that gets in the way.
  4. At this point can see page, but can't scroll. To scroll: Activate chrome console: <ctrl><shift> j
  5. In the console paste below text and hit enter:
function KeyPress(e) {
var evtobj = window.event? event : e
if (evtobj.keyCode == 90) {
window.scrollBy(0, 100)
}
if (evtobj.keyCode == 65) {
window.scrollBy(0, -100)
}
}

document.onkeydown = KeyPress;

Subscribe link: Subscription Page | Automotive News
 
  • Helpful
Reactions: Brando
To get past the paywall in firefox there is a similar procedure: create a bookmarklet that enables overflow:
Code:
javascrip:var r="html,body{overflow:auto !important;}"; var s=document.createElement("style"); s.type="text/css"; s.appendChild(document.createTextNode(r)); document.body.appendChild(s); void 0;
Spell correctly javascrip , add a 't' at end, in the above code. Some site security policy wouldn't let me post it correctly.
Right click on bookmars toolbar, create bookmark, paste above code in the location field, name the bookmark, something like scrollable.
Better instructions here: Where is the scrollbar, how can I force one even when source wants it to not be there? | Firefox Support Forum | Mozilla Support
 
  • Helpful
Reactions: Brando