Skip to content

Instantly share code, notes, and snippets.

@koichirok
Forked from anonymous/itmediaPR
Last active July 20, 2016 07:35
Show Gist options
  • Save koichirok/3e2812c735658504e2038e42c212cff6 to your computer and use it in GitHub Desktop.
Save koichirok/3e2812c735658504e2038e42c212cff6 to your computer and use it in GitHub Desktop.
itmediaPR
// ==UserScript==
// @name itmediaPR
// @namespace itmediaPR
// @description itmediaのPR記事を分かりやすくする
// @include http://www.itmedia.co.jp/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==
$(function () {
$('#cmsByline #byline:contains(PR)').append('<div style="margin-top:5px; padding:15px 0px 10px; color:#fff; text-shadow:1px 1px 0 rgba(0,0,0,0.2); background-color:#FE1A0B; font-size:4em; text-align:center;">この記事はPR記事です。</div>');
});
@koichirok
Copy link
Author

renamed for Tampermonkey

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment