Reddit Smart Share
Simple sharing plugin for reddit.
Co to jest Reddit Smart Share?
Reddit Smart Share to rozszerzenie Chrome opracowane przez ItsLennysFault, a jego główną funkcją jest „Simple sharing plugin for reddit.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reddit Smart Share
Pobierz pliki rozszerzeń Reddit Smart Share w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Reddit Smart Share |
ID | ldggeafbkacldageoihoigakolmgeekg |
Oficjalny URL | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
Opis | Simple sharing plugin for reddit. |
Rozmiar pliku | 14.88 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2018-01-29 |
Data Publikacji | 2018-01-29 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | ItsLennysFault |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Adres URL Strony Pomocy | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Obsługiwane Języki | 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" ] } |