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 |
| 官方網址 | 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"
]
} | |