PTT Auto Login

Automating the login process for PTT.

Was ist PTT Auto Login?

PTT Auto Login ist eine Chrome-Erweiterung, die von Tatsujin Chin entwickelt wurde, und ihr Hauptmerkmal ist "Automating the login process for PTT.".

Erweiterungsscreenshots

screenshot
screenshot

PTT Auto Login-Erweiterungs-CRX-Datei herunterladen

Laden Sie PTT Auto Login-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name PTT Auto Login PTT Auto Login
ID ghaajmaenailmmipaomfgoaemccfadfj
Offizielle URL https://chromewebstore.google.com/detail/ptt-auto-login/ghaajmaenailmmipaomfgoaemccfadfj
Beschreibung Automating the login process for PTT.
Dateigröße 33.09 KB
Installationsanzahl 2,081
Aktuelle Version 1.4
Letztes Update 2023-12-15
Veröffentlichungsdatum 2021-10-21
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler Tatsujin Chin
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/c910335/ptt-chrome-auto-login
Hilfeseite URL https://github.com/c910335/ptt-chrome-auto-login/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}