Reddit Smart Share
Simple sharing plugin for reddit.
What is Reddit Smart Share?
Reddit Smart Share is a Chrome extension developed by ItsLennysFault, and its main feature is "Simple sharing plugin for reddit.".
Extension Screenshots
Download Reddit Smart Share Extension CRX File
Download Reddit Smart Share extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Reddit Smart Share |
ID | ldggeafbkacldageoihoigakolmgeekg |
Official URL | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
Description | Simple sharing plugin for reddit. |
File Size | 14.88 KB |
Installation Count | 89 |
Current Version | 0.0.1 |
Last Updated | 2018-01-29 |
Publish Date | 2018-01-29 |
Rating | 5.00/5 Total 1 Ratings |
Developer | ItsLennysFault |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Help Page URL | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Supported Languages | 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" ] } |