DrumUp
Content marketing and news tracking
O que é DrumUp?
DrumUp é uma extensão do Chrome desenvolvida por https://drumup.io, e sua principal característica é "Content marketing and news tracking".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão DrumUp
Baixe arquivos de extensão DrumUp 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
When you're browsing the web, DrumUp shows you content related to what you're reading and lets you share it easily. It is a social media manager that discovers the coolest and the most relevant content from around the web for you to read and share with your social followers.
Informações Básicas da Extensão
Nome | DrumUp |
ID | hdbkcjlhppelfoljjhfkgaeffmamkmcb |
URL Oficial | https://chromewebstore.google.com/detail/drumup/hdbkcjlhppelfoljjhfkgaeffmamkmcb |
Descrição | Content marketing and news tracking |
Tamanho do Arquivo | 267 KB |
Contagem de Instalações | 2,460 |
Versão Atual | 0.0.0.32 |
Última Atualização | 2021-06-16 |
Data de Publicação | 2017-12-18 |
Classificação | 4.65/5 Total de 26 Avaliações |
Desenvolvedor | https://drumup.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://drumup.io/ |
URL da Página de Ajuda | https://drumup.io/contact |
URL da Página de Política de Privacidade | https://drumup.io/privacy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DrumUp", "version": "0.0.0.32", "author": "DrumUp.io", "manifest_version": 2, "description": "Content marketing and news tracking", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "js": [ "content.js" ] }, { "matches": [ "*:\/\/*.twitter.com\/*" ], "exclude_matches": [ "*:\/\/tweetdeck.twitter.com\/*" ], "js": [ "js\/jquery.min.js", "drumup_twitter.js" ], "css": [ "drumup_twitter.css" ] } ], "browser_action": { "default_icon": "images\/side_drum_light.png", "default_title": "DrumUp", "default_popup": "popup.html" }, "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js", "js\/jquery.min.js", "js\/bootstrap.min.js" ] }, "web_accessible_resources": [ "images\/icon_color.png" ] } |