iframe2link
by
noromanba
2016-02-29 [2016/02/29 06:20:18]
replace iframe to anchor link
@@ -8,8 +8,6 @@
*/
Array.prototype.forEach.call(document.body.querySelectorAll('iframe[src]'), function (iframe) {
- if (!iframe.src) return;
-
var link = document.createElement('a');
link.href = iframe.src;
link.appendChild(document.createTextNode(link.href));
/*
* @title iframe2link
* @description replace iframe to anchor link
* @inclide http://*
* @inclide https://*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
Array.prototype.forEach.call(document.body.querySelectorAll('iframe[src]'), function (iframe) {
var link = document.createElement('a');
link.href = iframe.src;
link.appendChild(document.createTextNode(link.href));
iframe.parentNode.replaceChild(link, iframe);
});
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。