+/-editable
@@ -1,9 +1,14 @@
/*
- * @title Chrome contentEditSwitcher
- * @description
+ * @title +/-editable
+ * @description toggle contentEditable
* @include http://*
- * @license MIT License
- * @require
+ * @include https://*
+ * @contributor aqril http://let.hatelabo.jp/aqril/let/hJmeuezR-_kY (Fork of)
+ * @license MIT License https://opensource.org/licenses/MIT
+ * @javascript_url
*/
-(function(){document.body.contentEditable = (document.body.contentEditable === 'false') ? 'true':'false';})();
+// contentEditable: true false "inherit"
+// isContentEditable: true false
+document.documentElement.contentEditable = !document.documentElement.isContentEditable;
+
/*
* @title +/-editable
* @description toggle contentEditable
* @include http://*
* @include https://*
* @contributor aqril http://let.hatelabo.jp/aqril/let/hJmeuezR-_kY (Fork of)
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
// contentEditable: true false "inherit"
// isContentEditable: true false
document.documentElement.contentEditable = !document.documentElement.isContentEditable;
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。