Stellar Photos

Experience a beautiful photo from Unsplash every time you open a new browser tab

Stellar Photos란 무엇입니까?

Stellar Photos은(는) Ayooluwa Isaiah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Experience a beautiful photo from Unsplash every time you open a new browser tab"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Stellar Photos 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - Enjoy a new, carefully curated hi-res photo every time you open a new tab - totally free for personal or commercial use with no attribution required.
- Download your favourite images or sync them over to the cloud (Google Drive, Dropbox or Onedrive).
- Change the frequency for loading new background images. Options include: every new tab, every 15 minutes, hourly or daily.
- Pause the your favourite background images until further notice.
- Search Unsplash's library of over 1 million hi-res photos.
- View basic photo information such as ISO, Location, Camera Model, Shutter Speed e.t.c.
- Load images from your favourite public Unsplash collections.
- See the images from the last 10 tabs you've opened and update the current background image to any one of them as you please.                    

확장 프로그램 기본 정보

이름 Stellar Photos Stellar Photos
ID dgjeipdebjigeaanhogpdjdjigogpjmo
공식 URL https://chromewebstore.google.com/detail/stellar-photos/dgjeipdebjigeaanhogpdjdjigogpjmo
설명 Experience a beautiful photo from Unsplash every time you open a new browser tab
파일 크기 333 KB
설치 횟수 541
현재 버전 4.1.2
최근 업데이트 2022-01-21
출시 날짜 2019-06-04
평점 4.75/5 총 4 개의 평점
개발자 Ayooluwa Isaiah
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://stellar.freshman.tech
도움말 페이지 URL https://github.com/ayoisaiah/stellar-photos/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stellar Photos",
    "version": "4.1.2",
    "description": "Experience a beautiful photo from Unsplash every time you open a new browser tab",
    "icons": {
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "notifications",
        "alarms"
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stellar.freshman.tech\/*"
            ],
            "js": [
                "js\/tab.bundle.js"
            ]
        }
    ],
    "minimum_chrome_version": "75"
}