bookmarklet

    
      
  • /*
     * @title bookmarklet
     * @description my bookmarklet
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    
    javascript: (
        function () {
            classCount = document.getElementsByClassName('gameListRow').length;
            var random = Math.floor(Math.random() * classCount) + 1;
            var gameList = document.querySelectorAll('.gameListRow');
            gameList[random].id = 'thisgameiscool';
            document.getElementById('thisgameiscool').style.backgroundColor = '#2d1616';
            window.location.hash = '';
            window.location.hash = 'thisgameiscool';
        }
    )();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2019/07/29 00:14:19 - 2019-07-29
  2. 2019/07/29 00:12:41 - 2019-07-29