Dogetip Allowed Subreddits Indicator
Shows a DOM indicator that the subreddit currently being views allows/bans tipping
O que é Dogetip Allowed Subreddits Indicator?
Dogetip Allowed Subreddits Indicator é uma extensão do Chrome desenvolvida por matt.duncan13, e sua principal característica é "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Dogetip Allowed Subreddits Indicator
Baixe arquivos de extensão Dogetip Allowed Subreddits Indicator 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
Displays a small floating notification to inform you if the subreddit you are currently browsing allows dogetipping. The notification minimizes itself on screen once scrolling begins to get out of your way while still providing a helpful hint! Subreddit allowed/banned list is pulled from www.reddit.com/r/dogecoin/wiki/other_subreddit_tipping Originally written by Matt Duncan - DOGE donations: D5ZN46GTLs2vqLFwkxcPMdjA1q6Q9nDhKz Ported for chrome by Maxime Kjaer - DOGE donations: D9xQ9V3BqzVcJtUj92immJJYcFsMLmVghq
Informações Básicas da Extensão
Nome | |
ID | pecgkckjkdlhoaacmmacdadfngimlkdn |
URL Oficial | https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn |
Descrição | Shows a DOM indicator that the subreddit currently being views allows/bans tipping |
Tamanho do Arquivo | 34.77 KB |
Contagem de Instalações | 22 |
Versão Atual | 1.1 |
Última Atualização | 2014-02-28 |
Data de Publicação | 2014-02-28 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | matt.duncan13 |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/FoxxMD/dogetip-allowedindicator |
URL da Página de Ajuda | https://github.com/FoxxMD/dogetip-allowedindicator |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dogetip Allowed Subreddits Indicator", "version": "1.1", "manifest_version": 2, "content_security_policy": "script-src 'self'; object-src 'self'", "description": "Shows a DOM indicator that the subreddit currently being views allows\/bans tipping", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/r\/*" ], "exclude_matches": [ "*:\/\/*.reddit.com\/r\/all\/*" ], "js": [ "script.js" ], "css": [ "suchStyle.css" ] } ], "permissions": [ "*:\/\/www.reddit.com\/r\/dogecoin\/wiki\/other_subreddit_tipping" ] } |