PTT Web Enhanced

幫 PTT web 版增加各種方便的功能,例如推文顯示樓層、高亮標示點選 ID 的所有推文、標示文章作者的推文等等。

Cos'è PTT Web Enhanced?

PTT Web Enhanced è un'estensione di Chrome sviluppata da Danny Lin, e la sua funzione principale è "幫 PTT web 版增加各種方便的功能,例如推文顯示樓層、高亮標示點選 ID 的所有推文、標示文章作者的推文等等。".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione PTT Web Enhanced

Scarica i file di estensione PTT Web Enhanced in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        注意:此套件只適用於點文章網址時會打開的網頁版 ( https://www.ptt.cc/bbs/ ),不支援虛擬終端機版 ( https://term.ptt.cc/ )。

主要功能:
• 點選使用者 ID 時顯示搜尋選單
• 文章上方導覽列顯示文章標題,點選可搜尋同主題文章
• 作者推文的箭頭顯示為淺藍色雙箭頭
• 高亮度點選的推文以及所有相同 ID 的推文
• 推文顯示樓層。指到推文時顯示這層樓是第幾推/噓/箭頭
• 隱藏頂部和底部導覽列
• 同主題上下篇瀏覽
• 增加圖片顯示大小上限
• 修正 ALLPOST 板文章連結
• 點選圖片時下載
• 可開關個別功能

此版本修改自 hyk 製作之 Firefox 附加元件。使用上遇到任何問題或建議,歡迎到 PTT Browsers 板討論,或是到 GitHub 回報 ( https://github.com/Kenqr/ptt-web-enhanced/issues )。

改版記錄請參見:
https://addons.mozilla.org/zh-TW/firefox/addon/ptt-web-enhanced/versions/                    

Informazioni di Base sull'Estensione

Nome PTT Web Enhanced PTT Web Enhanced
ID afheehakbckodogpkoeakfndigoimokn
URL Ufficiale https://chromewebstore.google.com/detail/ptt-web-enhanced/afheehakbckodogpkoeakfndigoimokn
Descrizione 幫 PTT web 版增加各種方便的功能,例如推文顯示樓層、高亮標示點選 ID 的所有推文、標示文章作者的推文等等。
Dimensione del File 38.27 KB
Conteggio Installazioni 1,200
Versione Corrente 1.9.1
Ultimo Aggiornamento 2022-09-14
Data di Pubblicazione 2022-01-26
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Danny Lin
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://addons.mozilla.org/firefox/addon/ptt-web-enhanced/
URL della Pagina di Aiuto https://github.com/Kenqr/ptt-web-enhanced
URL della Pagina della Politica sulla Privacy https://github.com/danny0838/webscrapbook/wiki/Privacy
Lingue Supportate zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PTT Web Enhanced",
    "version": "1.9.1",
    "description": "\u5e6b PTT web \u7248\u589e\u52a0\u5404\u7a2e\u65b9\u4fbf\u7684\u529f\u80fd\uff0c\u4f8b\u5982\u63a8\u6587\u986f\u793a\u6a13\u5c64\u3001\u9ad8\u4eae\u6a19\u793a\u9ede\u9078 ID \u7684\u6240\u6709\u63a8\u6587\u3001\u6a19\u793a\u6587\u7ae0\u4f5c\u8005\u7684\u63a8\u6587\u7b49\u7b49\u3002",
    "browser_specific_settings": {
        "gecko": {
            "id": "{27376da4-366d-4549-878e-5934e0114107}",
            "strict_min_version": "63.0"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "downloads",
        "storage"
    ],
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.ptt.cc\/bbs\/*\/index*.html",
                "https:\/\/www.ptt.cc\/bbs\/*\/index*.html?*",
                "https:\/\/www.ptt.cc\/bbs\/*\/search?*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "utils\/settings.js",
                "utils\/helpers.js",
                "board.js"
            ],
            "css": [
                "shared.css",
                "board.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.ptt.cc\/bbs\/*\/M.*.html",
                "https:\/\/www.ptt.cc\/bbs\/*\/M.*.html?*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "utils\/settings.js",
                "utils\/helpers.js",
                "article.js"
            ],
            "css": [
                "shared.css",
                "article.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.ptt.cc\/ask\/over18",
                "https:\/\/www.ptt.cc\/ask\/over18?*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "utils\/settings.js",
                "utils\/helpers.js",
                "r18.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png"
        },
        "default_title": "PTT Web Enhanced",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}