Twitter User Memo
Twitter memo application
什麼是Twitter User Memo?
Twitter User Memo是由twitter-user-memo開發的Chrome擴展程式,該擴展的主要功能是“Twitter memo application”。
擴展截圖
下載Twitter User Memo擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | bengjldcoldlkkpmajaeaochdoconilj |
| 官方網址 | 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"
}
} | |