Twitter Token Login
Logging into a Twitter account using a token
什么是Twitter Token Login?
Twitter Token Login是由ccx开发的Chrome扩展程序,该扩展的主要功能是“Logging into a Twitter account using a token”。
扩展截图
下载Twitter Token Login扩展crx文件
下载Twitter Token Login扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With the plugin's pop-up window, simply enter the token, click "Login," and the page will automatically refresh, enabling one-click login. 扩展基本信息
| 名称 | |
| ID | lebmjgeajaflbnbggmpeibnpeonjlmgb |
| 官方URL | https://chromewebstore.google.com/detail/twitter-token-login/lebmjgeajaflbnbggmpeibnpeonjlmgb |
| 简介 | Logging into a Twitter account using a token |
| 文件大小 | 10.63 KB |
| 安装次数 | 30,000 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-05-22 |
| 上架时间 | 2023-05-22 |
| 评分 | 4.29/5 共7次评分 |
| 开发者 | ccx |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"action": {
"default_icon": "icons\/login.png",
"default_popup": "popup\/index.html"
},
"description": "Logging into a Twitter account using a token",
"icons": {
"128": "icons\/login.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"popup\/script.js"
],
"css": [
"popup\/style.css"
]
}
],
"permissions": [
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/twitter.com\/*"
],
"manifest_version": 3,
"name": "Twitter Token Login",
"version": "1.0.0"
} | |