Skip to content

Instantly share code, notes, and snippets.

@thatblue
Last active August 29, 2023 15:14
Show Gist options
  • Select an option

  • Save thatblue/7d514360f39b24f2bc15dd260be2f213 to your computer and use it in GitHub Desktop.

Select an option

Save thatblue/7d514360f39b24f2bc15dd260be2f213 to your computer and use it in GitHub Desktop.
今週のしいたけ占いを開くブックマークレット
// このURLはうお座のページを開くようになっているので、`pisces`の部分を開きたい星座に置き換える
data:text/html,<script>const thisMonday = new Date();const dayOfWeek = thisMonday.getDay();const subDate = dayOfWeek === 0 ? 6 : dayOfWeek - 1;thisMonday.setDate(thisMonday.getDate() - subDate);window.location.href = `https://shiitakeuranai.jp/weekly-horoscope/${thisMonday.getFullYear()}-${(thisMonday.getMonth() + 1).toString().padStart(2, %270%27)}-${thisMonday.getDate().toString().padStart(2, 0)}/pisces/`;</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment