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ファイルをダウンロード

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
Eメール [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"
    }
}