Twitter Note

Take notes about them.

Qu'est-ce que Twitter Note ?

Twitter Note est une extension Chrome développée par https://emrecoban.com.tr, et sa fonction principale est "Take notes about them.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitter Note

Téléchargez les fichiers d'extension Twitter Note au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Twitter Note Twitter Note
ID hkgdpppefidcddecmcchdkplfgjkjcdk
URL Officiel https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk
Description Take notes about them.
Taille du Fichier 615 KB
Nombre d'Installations 43
Version Actuelle 1.0
Dernière Mise à Jour 2022-12-21
Date de Publication 2022-12-18
Évaluation 5.00/5 Total 4 Évaluations
Développeur https://emrecoban.com.tr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/emrecoban/twitterNote
URL de la Page d'Aide https://github.com/emrecoban/twitterNote/issues
Langues Prises en Charge 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"
    }
}