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.
扩展基本信息
名称 | 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" } } |