Skip to content

Instantly share code, notes, and snippets.

@x-magic
Last active April 19, 2019 00:13
Show Gist options
  • Save x-magic/460a28f582e7884f2ceab003bb596588 to your computer and use it in GitHub Desktop.
Save x-magic/460a28f582e7884f2ceab003bb596588 to your computer and use it in GitHub Desktop.
The title is load and clear!
// ==UserScript==
// @name CnBeta expand contents
// @namespace http://www.cnbeta.com/
// @version 0.1.3
// @description The title is load and clear!
// @author Some random guy
// @match http*://*.cnbeta.com/*
// @run-at document-end
// @updateURL https://gist.githubusercontent.com/x-magic/460a28f582e7884f2ceab003bb596588/raw/CnBetaExpandContents.user.js
// @downloadURL https://gist.githubusercontent.com/x-magic/460a28f582e7884f2ceab003bb596588/raw/CnBetaExpandContents.user.js
// ==/UserScript==
(function() {
'use strict';
jQuery('.cnbeta-update-list').css("cssText", "width: auto !important;");
jQuery('.cnbeta-article').css("cssText", "width: auto !important;");
//Following line allow zoom-out for narrower displays (such as 1080p display in portrait mode)
jQuery("<style type='text/css'>@media (min-width: 1070px) and (max-width: 1200px){body{zoom:0.85}}</style>").appendTo("head");
})();
/*
You are gonna need to use this with following AdBlock Plus Filters:
cnbeta.com##.cooperation
cnbeta.com###jzl_reco
cnbeta.com##.topContent
cnbeta.com##.cnbeta-headlines-title
cnbeta.com##.cnbeta-side-sponsor
cnbeta.com##.tac
cnbeta.com##.cnbeta-article-vote-tags
cnbeta.com##.cbv
cnbeta.com##.cnbeta-article-latest
cnbeta.com##.cnbeta-article-comments
cnbeta.com##.article-topic
cnbeta.com##.cnbeta-home-side
cnbeta.com##.article-share-code
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment