PTT Auto Login

Automating the login process for PTT.

What is PTT Auto Login?

PTT Auto Login is a Chrome extension developed by Tatsujin Chin, and its main feature is "Automating the login process for PTT.".

Extension Screenshots

screenshot
screenshot

Download PTT Auto Login Extension CRX File

Download PTT Auto Login extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        1. 點此擴充功能會開啟 PTT(https://term.ptt.cc)
2. 在 PTT 點此擴充功能即可設定登入代號及密碼
3. 未來在打開 PTT 時就都會自動登入了
4. 可至 chrome://password-manager/passwords 搜尋 term.ptt.cc 以管理密碼                    

Extension Basic Information

Name PTT Auto Login PTT Auto Login
ID ghaajmaenailmmipaomfgoaemccfadfj
Official URL https://chromewebstore.google.com/detail/ptt-auto-login/ghaajmaenailmmipaomfgoaemccfadfj
Description Automating the login process for PTT.
File Size 33.09 KB
Installation Count 2,081
Current Version 1.4
Last Updated 2023-12-15
Publish Date 2021-10-21
Rating 4.00/5 Total 3 Ratings
Developer Tatsujin Chin
Email [email protected]
Payment Type free
Extension Website https://github.com/c910335/ptt-chrome-auto-login
Help Page URL https://github.com/c910335/ptt-chrome-auto-login/issues
Supported Languages 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"
            ]
        }
    ]
}