Manga Viewer
A book-like viewer to read separate manga page images posted on SNS like reading a real book. Yet only supports weibo.
什麼是Manga Viewer?
Manga Viewer是由nikukikai開發的Chrome擴展程式,該擴展的主要功能是“A book-like viewer to read separate manga page images posted on SNS like reading a real book. Yet only supports weibo.”。
擴展截圖
下載Manga Viewer擴展crx文件
下載Manga Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension inserts a book-like viewer, which makes it possible to read separate manga page images posted on SNS like reading a real book. The viewer can be opened with the button displayed whithin a post. Currently only supports weibo.
v0.1.3
- Automatically divide long image into pages. 擴展基本資訊
| 名稱 | |
| ID | aoikkiamdjnipechicmgjinpnngiapjo |
| 官方網址 | https://chromewebstore.google.com/detail/manga-viewer/aoikkiamdjnipechicmgjinpnngiapjo |
| 簡介 | A book-like viewer to read separate manga page images posted on SNS like reading a real book. Yet only supports weibo. |
| 檔案大小 | 59.43 KB |
| 安裝次數 | 96 |
| 目前版本 | 0.1.3 |
| 更新時間 | 2024-01-20 |
| 上架時間 | 2023-08-22 |
| 開發者 | nikukikai |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/NikuKikai/chrome-manga-viewer |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Manga Viewer",
"version": "0.1.3",
"description": "A book-like viewer to read separate manga page images posted on SNS like reading a real book. Yet only supports weibo.",
"action": {
"default_title": "Popup",
"default_popup": "index.html",
"default_icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"content_scripts": [
{
"js": [
"assets\/content-script-loader.main.tsx.9841b66a.dbcc3a83.js"
],
"matches": [
"https:\/\/weibo.com\/*"
],
"media": [],
"css": [
"assets\/main.89aaa99d.css"
]
}
],
"author": "NikuKikai",
"web_accessible_resources": [
{
"matches": [
"https:\/\/weibo.com\/*"
],
"resources": [
"assets\/jsx-runtime.247be44e.js",
"assets\/main.tsx.9841b66a.js"
],
"use_dynamic_url": true
}
]
} | |