Digg
The most interesting and talked about stories, videos and pictures on the web.
什么是Digg?
Digg是由https://digg.com开发的Chrome扩展程序,该扩展的主要功能是“The most interesting and talked about stories, videos and pictures on the web.”。
扩展截图
下载Digg扩展crx文件
下载Digg扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | jilldpbanhfjgelnkkkdeafaadbdackp |
官方URL | https://chromewebstore.google.com/detail/digg/jilldpbanhfjgelnkkkdeafaadbdackp |
简介 | The most interesting and talked about stories, videos and pictures on the web. |
文件大小 | 75.87 KB |
安装次数 | 1,230 |
当前版本 | 0.2.1 |
更新时间 | 2013-09-24 |
上架时间 | 2013-09-24 |
评分 | 3.84/5 共31次评分 |
开发者 | https://digg.com |
付费类型 | free |
扩展官网 | http://digg.com |
帮助页面URL | http://support.digg.com |
支持的语言 | 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'" } |