BSKY EASY/AUTO HASHTAGS

Add pre-defined tags easily!

Skapare
minnieo
Dagliga installationer
0
Totala installationer
4
Betyg
1 0 0
Version
2024-11-25
Skapad
2024-11-17
Uppdaterad
2024-11-25
Licens
MIT
Gäller för

BSKY EASY/AUTO 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 = { ... }; with a comment saying "ADD YOUR TAGS HERE!!" 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",