Digg
The most interesting and talked about stories, videos and pictures on the web.
O que é Digg?
Digg é uma extensão do Chrome desenvolvida por https://digg.com, e sua principal característica é "The most interesting and talked about stories, videos and pictures on the web.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Digg
Baixe arquivos de extensão Digg 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
A simple, powerful and speedy way to follow your favorite publishers, writers, and bloggers. With this extension you can: * Keep up with your newest Digg Reader stories with real-time unread counts. * Add subscriptions to your favorite sources directly to Digg Reader.
Informações Básicas da Extensão
Nome | |
ID | jilldpbanhfjgelnkkkdeafaadbdackp |
URL Oficial | https://chromewebstore.google.com/detail/digg/jilldpbanhfjgelnkkkdeafaadbdackp |
Descrição | The most interesting and talked about stories, videos and pictures on the web. |
Tamanho do Arquivo | 75.87 KB |
Contagem de Instalações | 1,230 |
Versão Atual | 0.2.1 |
Última Atualização | 2013-09-24 |
Data de Publicação | 2013-09-24 |
Classificação | 3.84/5 Total de 31 Avaliações |
Desenvolvedor | https://digg.com |
Tipo de Pagamento | free |
Site da Extensão | http://digg.com |
URL da Página de Ajuda | http://support.digg.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Digg", "version": "0.2.1", "manifest_version": 2, "description": "The most interesting and talked about stories, videos and pictures on the web.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": "images\/icon-19.png" }, "background": { "scripts": [ "js\/lib\/require.min.js", "js\/require_config.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/digg.com\/reader*" ], "js": [ "js\/lib\/require.min.js", "js\/require_config.js", "js\/require_cs.js", "js\/diggreader.js" ] }, { "matches": [ "*:\/\/digg.com\/settings*" ], "js": [ "js\/lib\/require.min.js", "js\/require_config.js", "js\/require_cs.js", "js\/digg_settings.js" ] } ], "permissions": [ "storage", "tabs", "cookies", "*:\/\/*.digg.com\/*" ], "web_accessible_resources": [ "\/js\/*", "\/images\/*", "\/css\/*", "\/html\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |