Google Reader Filter Per Feed/Folder

By PyroPrints Last update Dec 21, 2012 — Installed 34,185 times.

insecure content infobox in chrome

in
Subscribe to insecure content infobox in chrome 2 posts, 1 voice



Sam Hasler Scriptwright
ChromeWindows

In chrome I get a "This page has insecure content" infobox when viewing reader on https urls.

This is due to the way you are inserting jQuery into the page. If you just required the script it doesn't cause a problem.

I've edited the script to add:

// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7...

removed the addJQuery function and put what was in the content and letsJQuery functions in the global scope of the script.

I also removed the createCSSClass function and just did this:

var CSS_RULES = ".qf {display:inline; font-size:.8em; color:#C3D6F4; border:1px solid #C3D6F4; margin-left:5px; padding-top: 3px; cursor:pointer;}"
+".word {font-size:140%; color:#black !important; border:1px solid #E3E7F1; margin-right:5px; cursor:pointer;}"
+".selectedWord {background-color: yellow;}"
+"td.export {color: #AAA;}";

$("head").append(CSS_RULES);

 
Sam Hasler Scriptwright
ChromeWindows

oops, better to require jquery via https url so all content is secure:

// @require https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js