You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basic javascript userscript loads and shows weather in an iframe from forecast.io - it's worked for years with Tampermonkey on all browsers including Chrome, Safari and Firefox Mac and Windows.
Actual Behavior
Disappears with latest Tampermonkey 4.10.6112 update or perhaps the 4.9.x version. The weather refuses to load on all browsers including Chrome and Firefox on Mac and Windows.
In Chrome I see an error that says:
"Requests to the server have been blocked by an extension"
Because of this issue I'm not updating Tampermonkey on Safari, but I assume its probably broke there too.
Is there a way to revert back to the previous version of Tampermonkey? This really stinks.
Specifications
Chrome and Firefox on Mac and Windows. Probably Safari too I assume.
Script
// ==UserScript==// @name Weather iFrame// @namespace wat// @version 0.1// @description try to take over the world!// @include https://www.startpage.com/en/?// @include https://www.startpage.com/// @include https://www.startpage.com/en/*// @include https://www.google.com/// @include https://www.google.com/webhp*// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js// ==/UserScript==variframe=document.createElement("iframe");iframe.id="weather"iframe.class="weather"iframe.src='//forecast.io/embed/#lat=39.636077&lon=-105.039545&name=Denver&color=white'iframe.setAttribute("style","padding: 10px; ;border:5px;height: 220px; width: 380px; border-radius: 40px; position:absolute; top: -45px; left: -10px !important;");document.documentElement.appendChild(iframe);(function(){'use strict';varstylesheet=`#weather { opacity: 0.6; /* css standard */ filter: contrast(50%) brightness(100%); /* internet explorer */ transition: 2s;}#weather:hover { opacity: 1; /* css standard */ filter: contrast(50%) brightness(200%); /* internet explorer */}div#hptl {display: none !important}`;varstyleElem=document.createElement('style');styleElem.textContent=stylesheet;document.head.appendChild(styleElem);})();
The text was updated successfully, but these errors were encountered:
Expected Behavior
Basic javascript userscript loads and shows weather in an iframe from forecast.io - it's worked for years with Tampermonkey on all browsers including Chrome, Safari and Firefox Mac and Windows.
Actual Behavior
Disappears with latest Tampermonkey 4.10.6112 update or perhaps the 4.9.x version. The weather refuses to load on all browsers including Chrome and Firefox on Mac and Windows.
In Chrome I see an error that says:
"Requests to the server have been blocked by an extension"
Because of this issue I'm not updating Tampermonkey on Safari, but I assume its probably broke there too.
Is there a way to revert back to the previous version of Tampermonkey? This really stinks.
Specifications
Chrome and Firefox on Mac and Windows. Probably Safari too I assume.
Script
The text was updated successfully, but these errors were encountered: