Twitter User Memo

Twitter memo application

Что такое Twitter User Memo?

Twitter User Memo - это расширение Chrome, разработанное twitter-user-memo, и его основная функция - "Twitter memo application".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Twitter User Memo

Скачайте файлы расширений Twitter User Memo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Twitter User Memo Twitter User Memo
ID bengjldcoldlkkpmajaeaochdoconilj
Официальный URL https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj
Описание Twitter memo application
Размер файла 21.22 KB
Количество установок 543
Текущая Версия 0.2
Последнее Обновление 2020-04-04
Дата публикации 2020-04-04
Рейтинг 4.21/5 Всего 14 оценок
Разработчик twitter-user-memo
Тип оплаты free
Поддерживаемые языки 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"
    }
}