Twitter Note

Take notes about them.

What is Twitter Note?

Twitter Note is a Chrome extension developed by https://emrecoban.com.tr, and its main feature is "Take notes about them.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Twitter Note Extension CRX File

Download Twitter Note extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Twitter Note Twitter Note
ID hkgdpppefidcddecmcchdkplfgjkjcdk
Official URL https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk
Description Take notes about them.
File Size 615 KB
Installation Count 43
Current Version 1.0
Last Updated 2022-12-21
Publish Date 2022-12-18
Rating 5.00/5 Total 4 Ratings
Developer https://emrecoban.com.tr
Email [email protected]
Payment Type free
Extension Website https://github.com/emrecoban/twitterNote
Help Page URL https://github.com/emrecoban/twitterNote/issues
Supported Languages 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"
    }
}