Gmailのパーマリンク取得
by
Lhankor_Mhy
2023-12-19 [2023/12/19 18:52:57]
ブックマークレットを使ってからメールスレッドやタイトルなどをクリックしてください
/*
* @title Gmailのパーマリンク取得
* @description ブックマークレットを使ってからメールスレッドやタイトルなどをクリックしてください
* @include https://mail.google.com/
* @license CC0
* @javascript_url
*/
{
const targetDataAttribute = "data-legacy-last-message-id"
alert('パーマリンクを取得するメールをクリック')
document.documentElement.addEventListener('click', e => {
const targetElement = (e.target.getAttributeNames().includes(targetDataAttribute)) ?
e.target :
e.target.querySelector(`[${targetDataAttribute}]`)
prompt('パーマリンク',`https://mail.google.com/mail/u/0/#all/${targetElement.getAttribute(targetDataAttribute)}`)
}, { once: true })
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。