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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |