LoginSignup
1
1

More than 5 years have passed since last update.

見ているページをチャットワークでシェアするブックマークレット

Posted at

概要

チャットワークには「チャットワークでシェアボタン」という機能が提供されています。
これはボタンを設置したページを簡単にチャットワークで共有するためのボタンですが、共有したいページにはだいたい設置されていないのでブックマークレットで使えるようにしました。

ブックマークレット

ChatWork用

share_with_ChatWork.js
javascript:(function(){"use strict";var title=encodeURIComponent(document.title),url=encodeURIComponent(window.location),popupURL="https://www.chatwork.com/packages/share/login.php?url="+url+"&title="+title,w=600,h=500,l=screen.width/2-w/2,t=screen.height/2-h/2;window.open(popupURL,"ChatWorkShare","resizable,scrollbars,status,width="+w+",height="+h+",left="+l+",top="+t);})()

KDDI ChatWork用

share_with_KDDI_ChatWork.js
javascript:(function(){"use strict";var title=encodeURIComponent(document.title),url=encodeURIComponent(window.location),popupURL="https://kcw.kddi.ne.jp/packages/share/login.php?url="+url+"&title="+title,w=600,h=500,l=screen.width/2-w/2,t=screen.height/2-h/2;window.open(popupURL,"ChatWorkShare","resizable,scrollbars,status,width="+w+",height="+h+",left="+l+",top="+t);})()
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1