Reddit Post Previewer
A chrome extension to preview new Reddit posts.
什么是Reddit Post Previewer?
Reddit Post Previewer是由Nick Rameau开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to preview new Reddit posts.”。
扩展截图
下载Reddit Post Previewer扩展crx文件
下载Reddit Post Previewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to preview new Reddit posts.
It's open source: https://github.com/R4meau/reddit-post-previewer 扩展基本信息
| 名称 | |
| ID | cmciogmigfaangcbmlmncbjofgpojgil |
| 官方URL | https://chromewebstore.google.com/detail/reddit-post-previewer/cmciogmigfaangcbmlmncbjofgpojgil |
| 简介 | A chrome extension to preview new Reddit posts. |
| 文件大小 | 52.91 KB |
| 安装次数 | 113 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2016-10-10 |
| 上架时间 | 2016-10-10 |
| 评分 | 4.33/5 共3次评分 |
| 开发者 | Nick Rameau |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/R4meau/reddit-post-previewer |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Post Previewer",
"version": "1.0.0",
"description": "A chrome extension to preview new Reddit posts.",
"manifest_version": 2,
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"content_scripts": [
{
"js": [
"js\/jquery-2.0.2.min.js",
"js\/showdown.min.js",
"js\/background.js"
],
"css": [
"css\/custom.css"
],
"matches": [
"https:\/\/www.reddit.com\/*submit?selftext=true",
"http:\/\/www.reddit.com\/*submit?selftext=true"
]
}
]
} | |