Twitter Note

Take notes about them.

Τι είναι το Twitter Note;

Το Twitter Note είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://emrecoban.com.tr, και η κύρια λειτουργία του είναι "Take notes about them.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitter Note

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

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

                        Twitter Note is an open-source MIT-licensed Chrome and Brave browser extension that helps you to take notes about the people who you blocked, or muted on their profile page. To take a note, also you don't have to block, or mute them.

Features
Take a note (limitless characters) about someone.
Delete all the notes with one click.
See all the notes.

Issues, Feedback, and Contributing
Go to the GitHub repository: https://github.com/emrecoban/twitterNote                    

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

Όνομα Twitter Note Twitter Note
ID hkgdpppefidcddecmcchdkplfgjkjcdk
Επίσημο URL https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk
Περιγραφή Take notes about them.
Μέγεθος Αρχείου 615 KB
Αριθμός Εγκαταστάσεων 43
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2022-12-21
Ημερομηνία Δημοσίευσης 2022-12-18
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://emrecoban.com.tr
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/emrecoban/twitterNote
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/emrecoban/twitterNote/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Note",
    "description": "Take notes about them.",
    "version": "1.0",
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": ".\/images\/twitterNote.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/scripts\/contentStyle.css"
            ],
            "js": [
                ".\/scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": ".\/images\/twitterNote.png",
        "32": ".\/images\/twitterNote.png",
        "48": ".\/images\/twitterNote.png",
        "128": ".\/images\/twitterNote.png"
    }
}