Filmtipset copy & paste field for filmtipset forum

By Row Last update Dec 14, 2010 — Installed 254 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           Filmtipset copy & paste field for filmtipset forum
// @namespace      none
// @description    Adds a input field on each movie page with link code for the forum.
// @include        http://www.filmtipset.se/film/*
// @include        http://nyheter24.se/filmtipset/film/*
// ==/UserScript==

var xpath = '//a[contains(@href,"report_bad_info.cgi")]/..';
var boxLocation = document.evaluate(xpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0);
var title = document.getElementsByTagName('h1')[0].innerHTML;
var input = document.createElement('input');
input.value = '[url]' + title + '|' + document.location.href.replace(/\.html.+$/,'.html') + '[/url]';
input.style.width = '100%';
var txt = document.createTextNode('Länkkod för forum');
boxLocation.parentNode.insertBefore(txt, boxLocation);
boxLocation.parentNode.insertBefore(input, boxLocation);