Skip to content

Instantly share code, notes, and snippets.

@noromanba
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noromanba/974bd5240d37fbc9a527 to your computer and use it in GitHub Desktop.
Save noromanba/974bd5240d37fbc9a527 to your computer and use it in GitHub Desktop.
log main window and iframes for UserScript
// ==UserScript==
// @name log all frames
// @namespace http://noromanba.flavors.me
// @description log main Window and iframes for UserScript
// @include http://*
// @include https://*
// @grant none
// @run-at document-end
// @version 2014.11.13.3
// @homepage https://gist.github.com/noromanba/974bd5240d37fbc9a527
// @downloadURL https://gist.github.com/noromanba/974bd5240d37fbc9a527/raw/log-all-frames.user.js
// @license CC0 Univ. PD http://creativecommons.org/publicdomain/zero/1.0/
// @author noromanba http://noromanba.flavors.me
// ==/UserScript==
// c.f.
// http://ptech.g.hatena.ne.jp/noromanba/20141112/1415819400
// Devel
// https://gist.github.com/noromanba/974bd5240d37fbc9a527
(function () {
/*
if (window.top !== window.self) return; // @noframes shim
//*/
console && console.debug && console.debug(window);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment