Digg
The most interesting and talked about stories, videos and pictures on the web.
¿Qué es Digg?
Digg es una extensión de Chrome desarrollada por https://digg.com, y su función principal es "The most interesting and talked about stories, videos and pictures on the web.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Digg
Descarga archivos de extensión Digg en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | jilldpbanhfjgelnkkkdeafaadbdackp |
URL Oficial | https://chromewebstore.google.com/detail/digg/jilldpbanhfjgelnkkkdeafaadbdackp |
Descripción | The most interesting and talked about stories, videos and pictures on the web. |
Tamaño del Archivo | 75.87 KB |
Cantidad de Instalaciones | 1,230 |
Versión Actual | 0.2.1 |
Última Actualización | 2013-09-24 |
Fecha de Publicación | 2013-09-24 |
Calificación | 3.84/5 Total de 31 Calificaciones |
Desarrollador | https://digg.com |
Tipo de Pago | free |
Sitio Web de la Extensión | http://digg.com |
URL de la Página de Ayuda | http://support.digg.com |
Idiomas Soportados | 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'" } |