家系ラーメンの注文ができる
by
chanchihiro
2017-01-27 [2017/01/27 16:45:08]
my bookmarklet
@@ -6,19 +6,23 @@
* @require
*/
-(function(){
- console.log("start");
- var all = document.createElement('div');
- all.innerHTML = '<h1>油少なめ味濃いめ</h1>';
- all.style.fontSize = '100px';
- all.style.zIndex = '1000';
- all.style.width = '100%';
- all.style.height = '100%';
- all.style.backgroundColor = '#888';
+console.log("start");
- var add_all = document.getElementsByTagName('body');
- document.add_all.appendChild(all);
+const all = document.createElement('div');
+all.innerHTML = '<h2>油少なめ味濃いめ</h2>';
+all.style.fontSize = '200px';
+all.style.color = '#fff';
+all.style.zIndex = '1000';
+all.style.width = '100%';
+all.style.height = '100%';
+all.style.backgroundColor = 'rgba(0,0,0,0.9)';
+all.style.position = 'fixed';
- console.log("end");
-});
+
+const add_all = document.getElementById('contents');
+document.body.insertBefore(all, add_all);
+
+const btn = document.getElementsByClassName('btn');
+
+console.log("end");
/*
* @title bookmarklet
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
console.log("start");
const all = document.createElement('div');
all.innerHTML = '<h2>油少なめ味濃いめ</h2>';
all.style.fontSize = '200px';
all.style.color = '#fff';
all.style.zIndex = '1000';
all.style.width = '100%';
all.style.height = '100%';
all.style.backgroundColor = 'rgba(0,0,0,0.9)';
all.style.position = 'fixed';
const add_all = document.getElementById('contents');
document.body.insertBefore(all, add_all);
const btn = document.getElementsByClassName('btn');
console.log("end");
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。