Digg New Tab Extension
Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.
What is Digg New Tab Extension?
Digg New Tab Extension is a Chrome extension developed by http://digg.com, and its main feature is "Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.".
Extension Screenshots
Download Digg New Tab Extension Extension CRX File
Download Digg New Tab Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When you open a new tab in Chrome, instead of the default, a nice image and the latest stories from digg.com will be loaded.
Extension Basic Information
Name | |
ID | ifhmmfkaojalpgphoaknehmekeoilfhh |
Official URL | https://chrome.google.com/webstore/detail/digg-new-tab-extension/ifhmmfkaojalpgphoaknehmekeoilfhh |
Description | Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com. |
File Size | 199 KB |
Installation Count | 1,650 |
Current Version | 1.37 |
Last Updated | 2020-09-19 |
Publish Date | 2020-04-13 |
Rating | 3.00/5 Total 10 Ratings |
Developer | http://digg.com |
[email protected] | |
Payment Type | free |
Extension Website | https://digg.com |
Privacy Policy Page URL | http://digg.com/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Digg New Tab Extension", "version": "1.37", "description": "Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.", "author": "Digg", "chrome_url_overrides": { "newtab": "dashboard.html" }, "icons": { "128": "icon_128.png" }, "permissions": [ "activeTab", "*:\/\/*.digg.com\/*", "*:\/\/stocksnap.io\/*" ], "background": { "persistent": false, "scripts": [ "vendor\/jquery-3.3.1.min.js", "dist\/js\/app.min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.ipinfo.io\/" ], "js": [ "dist\/js\/app.min.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ipinfo.io\/; object-src 'self'" } |