如何使用Greasemonkey / Tampermonkey脚本更改类CSS?

时间:2013-10-15 15:54:57

标签: javascript css greasemonkey userscripts tampermonkey

我正在尝试设置正文的背景图片,但仅限于使用类banner_url的位置。 HTML如下:

<body id="app_body" class="banner_url desktopapp" data-backdrop-limit="1">

基本上,我想强制页面使用以下CSS:

.banner_url {
    background: url('http://www.pxleyes.com/images/contests/kiwis/fullsize/sourceimage.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

我试图使用Greasemonkey这样做,如果它有任何区别。有谁知道我怎么能这样做?我从以下开始,但没有太多运气:

function randomBG(){
    document.getElementsByClassName("banner_url").style.backgroundImage="url('http://www.pxleyes.com/images/contests/kiwis/fullsize/sourceimage.jpg')no-repeat center center fixed;";
} 
randomBG();

2 个答案:

答案 0 :(得分:64)

为此,只需使用CSS级联。使用GM_addStyle()向页面添加样式表 注意:

  • 我们使用!important标志来涵盖某些潜在的冲突。
  • 使用@run-at document-start (或使用手写笔,见下文) ,以最大限度地减少与初始渲染后更改样式相关的“闪烁”。

完整的脚本:

// ==UserScript==
// @name     _Override banner_url styles
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @grant    GM_addStyle
// @run-at   document-start
// ==/UserScript==

GM_addStyle ( `
    .banner_url {
        background: url('http://www.pxleyes.com/images/contests/kiwis/fullsize/sourceimage.jpg') no-repeat center center fixed !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }
` );

请注意如果您使用的是Greasemonkey 4 ,它已经破坏了GM_addStyle() (以及其他很多东西)
强烈建议您切换到Tampermonkey或Violentmonkey。
事实上,Greasemonkey的控制开发人员says as much himself

同时,对于那些坚持GM4的受虐狂来说,这是一个垫片:

function GM_addStyle (cssStr) {
    var D               = document;
    var newNode         = D.createElement ('style');
    newNode.textContent = cssStr;

    var targ    = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
    targ.appendChild (newNode);
}

此外,对于纯CSS操作, Stylish Stylus extension是比Greasemonkey / Tampermonkey更好的选择。

答案 1 :(得分:3)

这样的事情怎么样?

document.getElementsByClassName("banner_url")[0] .style.backgroundImage="url('http://www.pxleyes.com/images/contests/kiwis/fullsize/sourceimage.jpg')";

但我必须承认我不确定理解这个问题