Twitter User Memo

Twitter memo application

What is Twitter User Memo?

Twitter User Memo is a Chrome extension developed by twitter-user-memo, and its main feature is "Twitter memo application".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download Twitter User Memo Extension CRX File

Download Twitter User Memo 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 User Memo is a Chrome extension that adds a small text box near any user's profile. Use this extension to leave a short memo on who users are at text boxes added beside their profile pictures, both on profile pages and hover profiles.                    

Extension Basic Information

Name Twitter User Memo Twitter User Memo
ID bengjldcoldlkkpmajaeaochdoconilj
Official URL https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj
Description Twitter memo application
File Size 21.22 KB
Installation Count 543
Current Version 0.2
Last Updated 2020-04-04
Publish Date 2020-04-04
Rating 4.21/5 Total 14 Ratings
Developer twitter-user-memo
Payment Type free
Supported Languages en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "description": "Twitter memo application",
    "default_locale": "en",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "*:\/\/*.twitter.com\/"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "css": [
                "css\/main.css"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/memoOnCard.js",
                "js\/memoOnProfile.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "32": "images\/icon24.png"
        },
        "default_title": "Twitter Memo"
    }
}