Greasy Fork is available in English.
恢复豆瓣电影页面去掉的点击IMDB编号直接跳转功能
// ==UserScript==
// @name 豆瓣电影 恢复IMDb跳转链接
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 恢复豆瓣电影页面去掉的点击IMDB编号直接跳转功能
// @author You
// @match *://movie.douban.com/subject*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var a = $("#info").html().replace(/\s\n/g,''),
b = /IMDb:<\/span>(.*?)<br>/gm,
c = a.match(b)[0],
d = c.replace('IMDb:<\/span>','').replace('<br>','').replace(/\s/g,''),
e = 'IMDb:</span> <a href="https://www.imdb.com/title/'+d+'" target="_blank">'+d+'</a>',
f = a.replace(c,e);
$("#info").html(f);
})();