Twitter Note

Take notes about them.

Twitter Note란 무엇입니까?

Twitter Note은(는) https://emrecoban.com.tr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take notes about them."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Twitter Note 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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