为具有特定内容的所有链接添加用户样式?

Add a user-style to all links with a certain content?

新手问题:

我想扫描所有 link 的页面,其中 href 以 hide? 开头,然后我想将 style="float:left" 添加到 link喜欢:

<a href="hide?6765765" style="float:left">

我该怎么做?
谢谢!

这是一种方法。 Google 任何不熟悉的术语(以及 "jQuery selectors")。

// ==UserScript==
// @name     _Float "hide" links
// @match    *://YOUR_SERVER.COM/YOUR_PATH/*
// @require  https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// @grant    GM.getValue
// ==/UserScript==
//- The @grant directives are needed to restore the proper sandbox.

waitForKeyElements ("a[href^='hide?']", floatNodeLeft);

function floatNodeLeft (jNode) {
    jNode.css ("float", "left");
}