Digg New Tab Extension
Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.
什么是Digg New Tab Extension?
Digg New Tab Extension是由http://digg.com开发的Chrome扩展程序,该扩展的主要功能是“Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.”。
扩展截图
下载Digg New Tab Extension扩展crx文件
下载Digg New Tab Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | ifhmmfkaojalpgphoaknehmekeoilfhh |
官方URL | https://chrome.google.com/webstore/detail/digg-new-tab-extension/ifhmmfkaojalpgphoaknehmekeoilfhh |
简介 | Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com. |
文件大小 | 199 KB |
安装次数 | 1,650 |
当前版本 | 1.37 |
更新时间 | 2020-09-19 |
上架时间 | 2020-04-13 |
评分 | 3.00/5 共10次评分 |
开发者 | http://digg.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://digg.com |
隐私政策页面URL | http://digg.com/privacy |
支持的语言 | 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'" } |