Reddit Smart Share
Simple sharing plugin for reddit.
Qu'est-ce que Reddit Smart Share ?
Reddit Smart Share est une extension Chrome développée par ItsLennysFault, et sa fonction principale est "Simple sharing plugin for reddit.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reddit Smart Share
Téléchargez les fichiers d'extension Reddit Smart Share au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Reddit Smart Share |
ID | ldggeafbkacldageoihoigakolmgeekg |
URL Officiel | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
Description | Simple sharing plugin for reddit. |
Taille du Fichier | 14.88 KB |
Nombre d'Installations | 89 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2018-01-29 |
Date de Publication | 2018-01-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | ItsLennysFault |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/RedditSmartShare/RedditSmartShareChrome |
URL de la Page d'Aide | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Langues Prises en Charge | 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" ] } |