!link
by
noromanba
2013-01-28 [2013/01/28 14:25:42]
toggle enable/disable links
@@ -1,15 +1,14 @@
/*
- * @title link2txt
- * @description disable links
+ * @title !link
+ * @description toggle enable/disable links
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2013
* @require
*/
-// TODO toggle
Array.prototype.slice.call(document.querySelectorAll('a[href]')).forEach(function (link) {
var style = link.style;
// c.f. http://caniuse.com/pointer-events
- style.pointerEvents = 'none';
+ style.pointerEvents = style.pointerEvents === 'none' ? '' : 'none'; // awful...
});
/*
* @title !link
* @description toggle enable/disable links
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2013
* @require
*/
Array.prototype.slice.call(document.querySelectorAll('a[href]')).forEach(function (link) {
var style = link.style;
// c.f. http://caniuse.com/pointer-events
style.pointerEvents = style.pointerEvents === 'none' ? '' : 'none'; // awful...
});
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。