Twitter User Memo

Twitter memo application

Twitter User Memo란 무엇입니까?

Twitter User Memo은(는) twitter-user-memo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitter memo application"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

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