Digg New Tab Extension
Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.
Vad är Digg New Tab Extension?
Digg New Tab Extension är en Chrome-tillägg utvecklad av http://digg.com, och dess huvudfunktion är "Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com.".
Tilläggsskärmbilder
Ladda ner Digg New Tab Extension-förlängningens CRX-fil
Ladda ner Digg New Tab Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ifhmmfkaojalpgphoaknehmekeoilfhh |
Officiell webbadress | https://chrome.google.com/webstore/detail/digg-new-tab-extension/ifhmmfkaojalpgphoaknehmekeoilfhh |
Beskrivning | Replace new tab page with a nice photo, friendly greeting, and some content from Digg.com. |
Filstorlek | 199 KB |
Antal Installationer | 1,650 |
Aktuell Version | 1.37 |
Senast Uppdaterad | 2020-09-19 |
Publiceringsdatum | 2020-04-13 |
Betyg | 3.00/5 Totalt 10 Betyg |
Utvecklare | http://digg.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://digg.com |
URL till Sekretesspolicy Sidan | http://digg.com/privacy |
Stödda Språk | 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'" } |