MangaUpdates+
Adds extra functionality to the manga updates site.
什么是MangaUpdates+?
MangaUpdates+是由ExPixel开发的Chrome扩展程序,该扩展的主要功能是“Adds extra functionality to the manga updates site.”。
扩展截图
下载MangaUpdates+扩展crx文件
下载MangaUpdates+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add extra functionality to http://mangaupdates.com with MangaUpdates+. Currently the extension allows viewing of a series' information simply by hovering over any link that points to a series, and also receiving notifications about new chapters being released. 扩展基本信息
| 名称 | |
| ID | dnfmdpgojcihahimcfhcajlloabbokgg |
| 官方URL | https://chrome.google.com/webstore/detail/mangaupdates+/dnfmdpgojcihahimcfhcajlloabbokgg |
| 简介 | Adds extra functionality to the manga updates site. |
| 文件大小 | 158 KB |
| 安装次数 | 44 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2014-08-11 |
| 上架时间 | 2014-08-11 |
| 评分 | 4.67/5 共3次评分 |
| 开发者 | ExPixel |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "MangaUpdates+",
"version": "0.0.2",
"manifest_version": 2,
"description": "Adds extra functionality to the manga updates site.",
"icons": {
"16": "icons\/mplus16.png",
"48": "icons\/mplus48.png",
"128": "icons\/mplus128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"permissions": [
"contentSettings",
"notifications",
"storage",
"tabs",
"alarms",
"https:\/\/*.mangaupdates.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.mangaupdates.com\/*"
],
"css": [
"css\/bootstrap\/bootstrap.css",
"css\/main.css",
"src\/inject\/inject.css"
]
},
{
"matches": [
"https:\/\/*.mangaupdates.com\/*"
],
"js": [
"js\/jquery\/jquery.min.js",
"js\/bootstrap\/bootstrap.min.js",
"src\/inject\/inject.js"
]
}
],
"web_accessible_resources": [
"js\/jquery\/jquery.min.js",
"icons\/mplus16.png",
"icons\/mplus32.png",
"icons\/mplus48.png",
"icons\/mplus64.png",
"icons\/ajax-loader.gif"
]
} | |