ACFUN 文章区界面简化

0.11

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         ACFUN 文章区界面简化
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  0.11
// @author       fromsep
// @match        http://www.acfun.cn/*
// @run-at       document-start
// ==/UserScript==

(function(){

    dispatch();

})();

function dispatch() {
    var url = window.location.href;
    var uri = url.replace(/http:\/\/www\.acfun\.cn/i, "");

    if(uri == "/") {
        return index();
    }

    if(uri.match(/^\/v\/list\d+\/index\.htm$/) !== null) {
        //newListPage();
        return jump2OldList(url);
    }

    if(uri.match(/^\/v\/list\d+\/index\=110\.htm$/) !== null) {
        return oldList();
    }

    if(uri.match(/^\/a\/ac\d+$/) !== null) {
        return detailPage();
    }

    return false;
}

function index() {
    var list = document.getElementsByClassName("module-tab")[0].children;
    var num;
    for (var i in list) {
        num = list[i].attributes['data-nav'].value;
        list[i].attributes.href.value = "/v/list" + num + "/index=110.htm";
        list[i].setAttribute("target", "_blank");
    }

    return true;
}

function jump2OldList(url) {
    window.location.href = url.replace(/index.htm/i, "index=110.htm");
    return true;
}

function oldList() {
    var list = document.getElementsByClassName("banner")[0].children;
    for (var i in list) {
        list[i].attributes.href.value = list[i].attributes.href.value.replace(/index.htm/i, "index=110.htm");
    }

    return true;
}

function detailPage() {
    var head, newStyle;
    head = document.getElementsByTagName('head')[0];

  if(head) {
    newStyle =  document.createElement('style');
    newStyle.setAttribute("type", "text/css");

    newStyle.innerHTML = '\
      #head-banner,#article-tags,div.fr {display:none;}\
      section.art-subject {height:10px !important;}\
      div.article-content {width:auto !important; margin-left:auto !important;}\
      div.content div.fl{width:1100px !important;}\
    ';

    head.appendChild(newStyle);
  }
  return true;
}


function newListPage() {
  var head, newStyle;
  head = document.getElementsByTagName('head')[0];

  if(head) {
    newStyle =  document.createElement('style');
    newStyle.setAttribute("type", "text/css");

    newStyle.innerHTML = '\
      div.refresh-bar {margin-bottom: 10px !important;}\
      div.domain-list {display:none !important;}\
      div.main-title {display:none !important;}\
      div.a-column-left {margin-top:0 !important;}\
      div.article-item {min-height:0 !important;}\
      hr.article-item-hr {margin:10px 0 10px 0 !important;}\
      a.atc-title {font-size:16px !important;font-weight:normal !important;}\
      div.atc-content {height:16px !important; margin-top:6px !important; }\
      div.atc-info {margin-top:12px !important;}\
      div.atc-left {min-height:0 !important;}\
      div.atc-image img {width:164px !important;height:90px !important;margin-left:55px !important}\
    ';

    head.appendChild(newStyle);
  }
  return true;
}