您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds links to various financial outlets to stocktwit stock pages
// ==UserScript== // @name Better Stocktwits // @description Adds links to various financial outlets to stocktwit stock pages // @author dividendnoob.com // @version 0.1 // @include http*://stocktwits.com/symbol/* // @include http*://*.stocktwits.com/symbol/* // @namespace DividendNoob // ==/UserScript== //Link Location URL's var NASDAQ = "http://www.nasdaq.com/symbol/"; var GOOGLE = "https://www.google.com/finance?q="; var YAHOO = "https://beta.finance.yahoo.com/quote/"; var FINVIZ = "http://www.finviz.com/quote.ashx?t="; var SALPHA = "http://seekingalpha.com/symbol/"; //Get the div tag where we want to add our links. This will not work with IE 8 or before. var x = document.getElementsByClassName("ticker-container"); //Parse the stock symbol from the URL var symbol = window.location.pathname.match(/\/symbol\/(.*)/)[1]; //Add the Links for (i = 0; i < x.length; i++) { x[i].innerHTML = x[i].innerHTML + "<b>Financials:</b> " + "<a href='" + NASDAQ + symbol +"' target='_blank'>Nasdaq</a>" + " | " + "<a href='" + GOOGLE + symbol +"' target='_blank'>Google Finance</a>" + " | " + "<a href='" + YAHOO + symbol + "' target='_blank'>Yahoo Finance</a>" + " | " + "<a href='" + FINVIZ + symbol +"' target='_blank'>Finviz</a>" + " | " + "<a href='" + SALPHA + symbol +"' target='_blank'>Seeking Alpha</a>"; }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址