New Userscript

try to take over the world!

目前為 2018-04-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://dmeden.net/comichtml/*
// @grant        none
// @require http://code.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==

(function() {
    'use strict';
$("#iBody img").width("100%");
$("#btnPageNext").css(
    {
    "position": "absolute",
    "right": "-30px",
    "height": "100%",
    "width": "33px"
});

    // Your code here...
})();