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是由lisheng開發的Chrome擴展程式,該擴展的主要功能是“Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.”。
擴展截圖
下載Random Newtab Image擴展crx文件
下載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(qiyanlou@gmail.com).
擴展基本資訊
名稱 | Random Newtab Image |
ID | gbikeliglehfocdcmohamnnjhepmldem |
官方網址 | 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 |
電子郵箱 | qiyanlou@gmail.com |
付費類型 | 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" ] } |