Twitter Note
Take notes about them.
什么是Twitter Note?
Twitter Note是由https://emrecoban.com.tr开发的Chrome扩展程序,该扩展的主要功能是“Take notes about them.”。
扩展截图
下载Twitter Note扩展crx文件
下载Twitter Note扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Twitter Note is an open-source MIT-licensed Chrome and Brave browser extension that helps you to take notes about the people who you blocked, or muted on their profile page. To take a note, also you don't have to block, or mute them. Features Take a note (limitless characters) about someone. Delete all the notes with one click. See all the notes. Issues, Feedback, and Contributing Go to the GitHub repository: https://github.com/emrecoban/twitterNote
扩展基本信息
名称 | Twitter Note |
ID | hkgdpppefidcddecmcchdkplfgjkjcdk |
官方URL | https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk |
简介 | Take notes about them. |
文件大小 | 615 KB |
安装次数 | 43 |
当前版本 | 1.0 |
更新时间 | 2022-12-21 |
上架时间 | 2022-12-18 |
评分 | 5.00/5 共4次评分 |
开发者 | https://emrecoban.com.tr |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/emrecoban/twitterNote |
帮助页面URL | https://github.com/emrecoban/twitterNote/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Note", "description": "Take notes about them.", "version": "1.0", "action": { "default_popup": ".\/popup\/popup.html", "default_icon": ".\/images\/twitterNote.png" }, "content_scripts": [ { "css": [ ".\/scripts\/contentStyle.css" ], "js": [ ".\/scripts\/content.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "icons": { "16": ".\/images\/twitterNote.png", "32": ".\/images\/twitterNote.png", "48": ".\/images\/twitterNote.png", "128": ".\/images\/twitterNote.png" } } |