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