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 |
| 公式URL | 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 |
| Eメール | [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
}
]
} | |