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. 擴展基本資訊
| 名稱 | |
| ID | gidagjoldoibifeocgoioiblgpehmbad |
| 官方網址 | 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"
} | |