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