Digg
The most interesting and talked about stories, videos and pictures on the web.
Что такое Digg?
Digg - это расширение Chrome, разработанное https://digg.com, и его основная функция - "The most interesting and talked about stories, videos and pictures on the web.".
Снимки экрана расширения
Скачать файл CRX расширения Digg
Скачайте файлы расширений 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'" } |