Reddit Smart Share
Simple sharing plugin for reddit.
什么是Reddit Smart Share?
Reddit Smart Share是由ItsLennysFault开发的Chrome扩展程序,该扩展的主要功能是“Simple sharing plugin for reddit.”。
扩展截图
下载Reddit Smart Share扩展crx文件
下载Reddit Smart Share扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple extension to make it easier to share things from Reddit. All it does is add a small icon to the top left corner of any reddit video player with a link to the direct video URL. 扩展基本信息
| 名称 | |
| ID | ldggeafbkacldageoihoigakolmgeekg |
| 官方URL | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
| 简介 | Simple sharing plugin for reddit. |
| 文件大小 | 14.88 KB |
| 安装次数 | 89 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2018-01-29 |
| 上架时间 | 2018-01-29 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | ItsLennysFault |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/RedditSmartShare/RedditSmartShareChrome |
| 帮助页面URL | https://github.com/RedditSmartShare/RedditSmartShareChrome |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Smart Share",
"version": "0.0.1",
"manifest_version": 2,
"description": "Simple sharing plugin for reddit.",
"homepage_url": "https:\/\/github.com\/RedditSmartShare\/RedditSmartShareChrome",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"permissions": [
"https:\/\/www.reddit.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.reddit.com\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"https:\/\/www.reddit.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
],
"web_accessible_resources": [
"icons\/*.png"
]
} | |