Reddit Smart Share
Simple sharing plugin for reddit.
Cos'è Reddit Smart Share?
Reddit Smart Share è un'estensione di Chrome sviluppata da ItsLennysFault, e la sua funzione principale è "Simple sharing plugin for reddit.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Smart Share
Scarica i file di estensione Reddit Smart Share in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Reddit Smart Share |
ID | ldggeafbkacldageoihoigakolmgeekg |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
Descrizione | Simple sharing plugin for reddit. |
Dimensione del File | 14.88 KB |
Conteggio Installazioni | 89 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2018-01-29 |
Data di Pubblicazione | 2018-01-29 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ItsLennysFault |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/RedditSmartShare/RedditSmartShareChrome |
URL della Pagina di Aiuto | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Lingue Supportate | 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" ] } |