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 |
官方網址 | 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'" } |