The Creative Independent’s Extension

Displays a quote from The Creative Independent on your new tab.

The Creative Independent’s Extension란 무엇입니까?

The Creative Independent’s Extension은(는) https://thecreativeindependent.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a quote from The Creative Independent on your new tab."입니다.

확장 프로그램 스크린샷

screenshot

The Creative Independent’s Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Any time you open a new tab, you’ll see a quote from an interview on The Creative Independent. It’s a good way to remember TCI exists as you go about your browsing rituals. 

This new tab Chrome extension can be run completely offline. When you go back online, it will pull new quotes from TCI. Our Chrome extension will never track your browsing history or collect any data about you. It’s also completely open source.                    

확장 프로그램 기본 정보

이름 The Creative Independent’s Extension The Creative Independent’s Extension
ID hfpihhnbilfkcjakaeopanccjlcnnefp
공식 URL https://chromewebstore.google.com/detail/the-creative-independent%E2%80%99/hfpihhnbilfkcjakaeopanccjlcnnefp
설명 Displays a quote from The Creative Independent on your new tab.
파일 크기 25.36 KB
설치 횟수 1,464
현재 버전 2.0.2
최근 업데이트 2022-09-27
출시 날짜 2019-10-30
평점 4.92/5 총 12 개의 평점
개발자 https://thecreativeindependent.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://thecreativeindependent.com/extension/
도움말 페이지 URL https://thecreativeindependent.com/extension/
개인정보 보호 정책 페이지 URL https://thecreativeindependent.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "The Creative Independent\u2019s Extension",
    "version": "2.0.2",
    "description": "Displays a quote from The Creative Independent on your new tab.",
    "icons": {
        "16": ".\/icons\/tci-chrome-16.png",
        "48": ".\/icons\/tci-chrome-48.png",
        "128": ".\/icons\/tci-chrome-128.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/thecreativeindependent.com\/api\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}