Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(snippets): add some new snippets #725

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added resources/assets/Hide-Audiobooks-Button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/Hide-Podcast-Button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/Hide-Recently-Played.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/Hide-Whats-New-Button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions resources/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -340,5 +340,35 @@
"description": "Adds Ash and Pikachu to your playback bar!",
"code": ".player-controls .playback-progressbar::before { content: ''; width: 42px ; height: 42px; bottom: calc(100% - 7px); right: 10px; position: absolute; image-rendering: pixelated; background-size: 42px 42px ; background-image: url('https://i.giphy.com/mFYJZxzy2SFqC8YSWd.webp'); }",
"preview": "resources/assets/snippets/pokemon-adventure.png"
},
{
"title": "Hide Friend Activity Button 2024",
"description": "Hides the Friend Activity button",
"code": "[aria-label='Friend Activity'] {display:none;}",
"preview": "resources/assets/snippets/Hide-Friend-Activity-Button.png"
},
{
"title": "Hide What's New Button",
"description": "Hides the What's New button",
"code": "[aria-label=\"What's New\"] {display:none;}",
"preview": "resources/assets/snippets/Hide-Whats-New-Button.png"
},
{
"title": "Hide Audiobooks Button",
"description": "Hides the Audiobook button on the home page",
"code": "button[aria-label='Audiobooks'] {display:none;}",
"preview": "resources/assets/snippets/Hide-Audiobooks-Button.png"
}
{
"title": "Hide Podcast Button",
"description": "Hides the Podcast button on the home page",
"code": "button[aria-label='Podcasts'] {display:none;}",
"preview": "resources/assets/snippets/Hide-Podcast-Button.png"
},
{
"title": "Hide Recently Played Sections",
"description": "Hides the Recently Played sections on the home page",
"code": ".view-homeShortcutsGrid-shortcuts, section[aria-label='Recently played'] {display:none;}",
"preview": "resources/assets/snippets/Hide-Recently-Played.png"
}
]
Loading