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"
    }
}