Misskey TL Filter

Various filters can be applied to posts on the Misskey timeline

Τι είναι το Misskey TL Filter;

Το Misskey TL Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ikakonbu, και η κύρια λειτουργία του είναι "Various filters can be applied to posts on the Misskey timeline".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Misskey TL Filter

Λήψη αρχείων επέκτασης Misskey TL Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ----- For users who want to use other sites than Misskey.io -----
The servers that are configured to work by default are listed here.
(We only allow them to work, we do not guarantee that they will work correctly.)
https://github.com/ikakonbu/Misskey-TL-Filter/blob/main/README-en.md

If you would like to use a Misskey server that is not on this list, please configure the following.
1,Access misskey.io once, whether you have an account or not.
2,Click on the icon of this extension and open the settings window.
3, Enter the domain of the server you want to run the extension on in the "Run on other servers" option.
(Ex: misskey.cf, misskey.art)



Want to hide the renote now on Misskey server. But custom CSS is too hard to understand... This extension solves such problems!
Just click the extension icon and set the filter from the settings screen, and it will be reflected immediately.Also, since the settings are saved, you can continue to use the same settings once you have set them!


Configuration List
 --Configurable for each Timelines --
    Hide re-note
    Hide citations
    Hide notes with NSFW settings
    Hide notes with hidden content
 Hide media (home, list, profile, role, antenna, channel)
 Hide bot (local, social, antenna)
 Hide local notes (Global, Antenna)
 Display only the coalition (Antenna)

 --Options applied simultaneously in all Timelines--
 Hide channels
 Hide/show re-note/show only re-note
 Show/Hide NSFW media
 Show local only/show federated only
 Hide/show media/show media only
 better design for emoji picker
 More bigger hide image button
 Hide the number of followers/followers


Supported device
Chrome, Edge, Opera(Windows, mac)
Default UI or Deck UI

Supported langage
・Japanese (standard + 2 dialects)
・English

For Firefox user
https://addons.mozilla.org/ja/firefox/addon/misskey-tl-filter                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Misskey TL Filter Misskey TL Filter
ID gligjcdfcokjfdkpmjgncgdoefnpkpej
Επίσημο URL https://chromewebstore.google.com/detail/misskey-tl-filter/gligjcdfcokjfdkpmjgncgdoefnpkpej
Περιγραφή Various filters can be applied to posts on the Misskey timeline
Μέγεθος Αρχείου 137 KB
Αριθμός Εγκαταστάσεων 896
Τρέχουσα Έκδοση 1.4.1
Τελευταία Ενημέρωση 2023-11-20
Ημερομηνία Δημοσίευσης 2023-06-28
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής ikakonbu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ikakonbu/Misskey-TL-Filter
Διεύθυνση URL της Σελίδας Βοήθειας https://misskey.io/@ikakonbu
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_Name__",
    "version": "1.4.1",
    "manifest_version": 3,
    "description": "__MSG_Description__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/init.js"
            ]
        }
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": ".\/img\/icon_16.png",
        "48": ".\/img\/icon_48.png",
        "128": ".\/img\/icon_128.png"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": ".\/js\/serviceworker.js"
    },
    "action": {
        "default_title": "Misskey TL Filter",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/img\/icon_16.png",
            "48": ".\/img\/icon_48.png",
            "128": ".\/img\/icon_128.png"
        }
    }
}