Ptt Media Preview
增強 Ptt 連結預覽體驗
什麼是Ptt Media Preview?
Ptt Media Preview是由Mingc開發的Chrome擴展程式,該擴展的主要功能是“增強 Ptt 連結預覽體驗”。
擴展截圖
下載Ptt Media Preview擴展crx文件
下載Ptt Media Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
在網頁版與 term.ptt.cc 支援顯示更多圖片與影片
- imgur.com/a
- imgur.com/gallery
- live.staticflickr.com
- pbs.twimg.com
- pic.pimg.tw
- www.youtube.com
- youtu.be
- i.pixiv.cat
將 gif 換成 mp4,加速讀取與減少流量使用。
Source code: https://github.com/mingc00/ptt-imgur-fix 擴展基本資訊
| 名稱 | |
| ID | khanhghjfcpmgkomfomadomnckjakglm |
| 官方網址 | https://chromewebstore.google.com/detail/ptt-media-preview/khanhghjfcpmgkomfomadomnckjakglm |
| 簡介 | 增強 Ptt 連結預覽體驗 |
| 檔案大小 | 19.15 KB |
| 安裝次數 | 3,273 |
| 目前版本 | 5.0.5 |
| 更新時間 | 2024-01-11 |
| 上架時間 | 2021-08-12 |
| 評分 | 4.80/5 共 5 次評分 |
| 開發者 | Mingc |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/mingc00/ptt-imgur-fix |
| 支援的語言 | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Ptt Media Preview",
"description": "\u589e\u5f37 Ptt \u9023\u7d50\u9810\u89bd\u9ad4\u9a57",
"version": "5.0.5",
"icons": {
"48": "icon\/48.png",
"128": "icon\/128.png",
"256": "icon\/256.png"
},
"permissions": [
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/*.imgur.com\/*",
"https:\/\/www.ptt.cc\/*",
"https:\/\/term.ptt.cc\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.ptt.cc\/*.html"
],
"js": [
"imgur.js",
"web.js"
]
},
{
"matches": [
"https:\/\/term.ptt.cc\/"
],
"js": [
"imgur.js",
"term.js"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "rule_set",
"enabled": true,
"path": "rules.json"
}
]
},
"manifest_version": 3
} | |