Reddit Smart Share
Simple sharing plugin for reddit.
Wat is Reddit Smart Share?
Reddit Smart Share is een Chrome-extensie ontwikkeld door ItsLennysFault, en de belangrijkste functie is "Simple sharing plugin for reddit.".
Extensie Screenshots
Download het CRX-bestand van de extensie Reddit Smart Share
Download Reddit Smart Share-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ldggeafbkacldageoihoigakolmgeekg |
| Officiële URL | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
| Beschrijving | Simple sharing plugin for reddit. |
| Bestandsgrootte | 14.88 KB |
| Aantal Installaties | 89 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2018-01-29 |
| Publicatiedatum | 2018-01-29 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | ItsLennysFault |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/RedditSmartShare/RedditSmartShareChrome |
| Help Pagina-URL | https://github.com/RedditSmartShare/RedditSmartShareChrome |
| Ondersteunde Talen | 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"
]
} | |