PayCheck for X (Formerly Twitter)
See (a very VERY rough idea of) how much money a post is worth
什么是PayCheck for X (Formerly Twitter)?
PayCheck for X (Formerly Twitter)是由Theo开发的Chrome扩展程序,该扩展的主要功能是“See (a very VERY rough idea of) how much money a post is worth”。
扩展截图
下载PayCheck for X (Formerly Twitter)扩展crx文件
下载PayCheck for X (Formerly Twitter)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
See (a very VERY rough idea of) how much money a tweet is worth
GITHUB LINK: https://github.com/t3dotgg/paycheck-extension 扩展基本信息
| 名称 | |
| ID | ldgffedhocinnolmaaecnppdfmmofilp |
| 官方URL | https://chromewebstore.google.com/detail/paycheck-for-x-formerly-t/ldgffedhocinnolmaaecnppdfmmofilp |
| 简介 | See (a very VERY rough idea of) how much money a post is worth |
| 文件大小 | 16.48 KB |
| 安装次数 | 4,329 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2023-08-15 |
| 上架时间 | 2023-08-10 |
| 评分 | 3.67/5 共24次评分 |
| 开发者 | Theo |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/t3dotgg/paycheck-extension |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PayCheck for X (Formerly Twitter)",
"description": "See (a very VERY rough idea of) how much money a post is worth",
"version": "0.0.3",
"icons": {
"16": "\/assets\/PCX-icon-16.png",
"32": "\/assets\/PCX-icon-32.png",
"48": "\/assets\/PCX-icon-48.png",
"128": "\/assets\/PCX-icon-128.png"
},
"author": "Theo",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*",
"https:\/\/tweetdeck.twitter.com\/*",
"https:\/\/x.com\/*"
],
"js": [
"main.js"
]
}
]
} | |