Random Newtab Image
Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.
Random Newtab Imageคืออะไร?
Random Newtab Image เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lisheng และคุณลักษณะหลักของมันคือ "Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Random Newtab Image
ดาวน์โหลดไฟล์ส่วนขยาย Random Newtab Image ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Randomly choose images from bing, artstation, flickr as your chrome newtab image. According to Google's policy, this extension will replace your default tab. The extension can also set Windows10 desktop image with the help of a local exe. download: https://www.dropbox.com/s/yzpskpatgohhvvs/RandomBackground.msi?dl=0 Source Code: https://github.com/abucraft/RandomBackgroundChromeExt Any problem please send email to me([email protected]).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Random Newtab Image |
ID | gbikeliglehfocdcmohamnnjhepmldem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/random-newtab-image/gbikeliglehfocdcmohamnnjhepmldem |
คำอธิบาย | Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab. |
ขนาดไฟล์ | 199 KB |
จำนวนการติดตั้ง | 313 |
เวอร์ชันปัจจุบัน | 1.7.5 |
อัปเดตครั้งล่าสุด | 2020-07-21 |
วันที่เผยแพร่ | 2019-12-21 |
คะแนน | 4.29/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | lisheng |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.7.5", "default_locale": "en", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "https:\/\/*.flickr.com\/*", "https:\/\/*.artstation.com\/*", "https:\/\/*.bing.com\/*", "nativeMessaging" ], "optional_permissions": [ "background" ], "chrome_url_overrides": { "newtab": "newtab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "lib\/utils.js", "lib\/jquery-3.2.0.min.js", "bg\/log.js", "bg\/imageUrlLoader.js", "bg\/bingImageUrl.js", "bg\/artstationImageUrl.js", "bg\/flickrImageUrl.js", "bg\/background.js" ] }, "web_accessible_resources": [ "cs\/setting.html", "icon.png" ] } |