Reddit Smart Share
Simple sharing plugin for reddit.
O que é Reddit Smart Share?
Reddit Smart Share é uma extensão do Chrome desenvolvida por ItsLennysFault, e sua principal característica é "Simple sharing plugin for reddit.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reddit Smart Share
Baixe arquivos de extensão Reddit Smart Share no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Reddit Smart Share |
ID | ldggeafbkacldageoihoigakolmgeekg |
URL Oficial | https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg |
Descrição | Simple sharing plugin for reddit. |
Tamanho do Arquivo | 14.88 KB |
Contagem de Instalações | 89 |
Versão Atual | 0.0.1 |
Última Atualização | 2018-01-29 |
Data de Publicação | 2018-01-29 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | ItsLennysFault |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/RedditSmartShare/RedditSmartShareChrome |
URL da Página de Ajuda | https://github.com/RedditSmartShare/RedditSmartShareChrome |
Idiomas Suportados | 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" ] } |