Twitter Note

Take notes about them.

Apa itu Twitter Note?

Twitter Note adalah ekstensi Chrome yang dikembangkan oleh https://emrecoban.com.tr, dan fitur utamanya adalah "Take notes about them.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Twitter Note

Unduh file ekstensi Twitter Note dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Twitter Note Twitter Note
ID hkgdpppefidcddecmcchdkplfgjkjcdk
URL Resmi https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk
Deskripsi Take notes about them.
Ukuran File 615 KB
Jumlah Instalasi 43
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-12-21
Tanggal Publikasi 2022-12-18
Penilaian 5.00/5 Total 4 Penilaian
Pengembang https://emrecoban.com.tr
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/emrecoban/twitterNote
URL Halaman Bantuan https://github.com/emrecoban/twitterNote/issues
Bahasa yang Didukung 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"
    }
}