Last active
August 29, 2023 15:14
-
-
Save thatblue/7d514360f39b24f2bc15dd260be2f213 to your computer and use it in GitHub Desktop.
今週のしいたけ占いを開くブックマークレット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // この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