PTT Auto Login
Automating the login process for PTT.
什么是PTT Auto Login?
PTT Auto Login是由Tatsujin Chin开发的Chrome扩展程序,该扩展的主要功能是“Automating the login process for PTT.”。
扩展截图
下载PTT Auto Login扩展crx文件
下载PTT Auto Login扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
1. 點此擴充功能會開啟 PTT(https://term.ptt.cc) 2. 在 PTT 點此擴充功能即可設定登入代號及密碼 3. 未來在打開 PTT 時就都會自動登入了 4. 可至 chrome://password-manager/passwords 搜尋 term.ptt.cc 以管理密碼
扩展基本信息
名称 | PTT Auto Login |
ID | ghaajmaenailmmipaomfgoaemccfadfj |
官方URL | https://chromewebstore.google.com/detail/ptt-auto-login/ghaajmaenailmmipaomfgoaemccfadfj |
简介 | Automating the login process for PTT. |
文件大小 | 33.09 KB |
安装次数 | 2,081 |
当前版本 | 1.4 |
更新时间 | 2023-12-15 |
上架时间 | 2021-10-21 |
评分 | 4.00/5 共3次评分 |
开发者 | Tatsujin Chin |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/c910335/ptt-chrome-auto-login |
帮助页面URL | https://github.com/c910335/ptt-chrome-auto-login/issues |
支持的语言 | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PTT Auto Login", "description": "Automating the login process for PTT.", "version": "1.4", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "src\/popup.html", "default_icon": { "16": "\/icons\/P16.png", "32": "\/icons\/P32.png", "48": "\/icons\/P48.png", "128": "\/icons\/P128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/term.ptt.cc\/*" ], "js": [ "src\/content.js" ] } ] } |