BSKY EZ HASHTAGS

Add pre-defined tags easily!

Autor
minnieo
Denně instalací
1
Celkem instalací
3
Hodnocení
0 1 0
Verze
2024-11-17
Vytvořeno
17. 11. 2024
Aktualizováno
17. 11. 2024
Licence
MIT
Spustit na

BSKY EZ HASHTAGS

This script allows you to easily insert predefined tags into your post on BSKY

Instructions to Add Your Own Tags:

1. Find the tags dictionary in the code: At the top of the script, you will see a section called const tags = { ... };. This is where all the predefined tags are stored.

2. Add Your Own Tags: To add a new set of tags:

  • Copy one of the existing lines inside the tags object (for example, "test": "#this #is #first #test").
  • Paste it below the existing lines and change the key (the word in quotes, like "test") to something meaningful for your tags.
  • Change the value (the hashtags or tags in #tag format) to your desired tags. Each line EXCEPT the last line should end in a comma!


"myNewTag": "#example #new #tags",

3. Save the Changes: After adding your new tags, save the script. The new tag set will now appear as an option in the dropdown when you click the custom button on the webpage.


Note: For example, if you want to add a set of tags for a "project" category, it would look like this:


"project": "#newproject #work #tasks",