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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://digg.com และคุณลักษณะหลักของมันคือ "Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Digg New Tab Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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'" } |