Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Feedly - Kill UpperCaseTitle
- // @include http://cloud.feedly.com/*
- // @include https://cloud.feedly.com/*
- // @include http://feedly.com/*
- // @include https://feedly.com/*
- // ==/UserScript==
- (function() {
- function evalInPage(fun) {
- location.href = "javascript:void (" + fun + ")()";
- }
- evalInPage(function () {
- devhd.utils.StringUtils.cleanTitle = function(g){
- if (g == null) {
- return g
- }
- g = devhd.str.stripTags(g);
- var f = g.replace(/#[0-9]* -/i, "");
- f = devhd.utils.StringUtils.trim(f);
- return f.length < g.length / 3 || f.length < 5 ? devhd.str.stripTags(g) : f
- };
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment