The Creative Independent’s Extension

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

Co to jest The Creative Independent’s Extension?

The Creative Independent’s Extension to rozszerzenie Chrome opracowane przez https://thecreativeindependent.com, a jego główną funkcją jest „Displays a quote from The Creative Independent on your new tab.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia The Creative Independent’s Extension

Pobierz pliki rozszerzeń The Creative Independent’s Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa The Creative Independent’s Extension The Creative Independent’s Extension
ID hfpihhnbilfkcjakaeopanccjlcnnefp
Oficjalny URL https://chromewebstore.google.com/detail/the-creative-independent%E2%80%99/hfpihhnbilfkcjakaeopanccjlcnnefp
Opis Displays a quote from The Creative Independent on your new tab.
Rozmiar pliku 25.36 KB
Liczba instalacji 1,464
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2022-09-27
Data Publikacji 2019-10-30
Ocena 4.92/5 Łącznie 12 Oceny
Deweloper https://thecreativeindependent.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://thecreativeindependent.com/extension/
Adres URL Strony Pomocy https://thecreativeindependent.com/extension/
Adres URL Strony Polityki Prywatności https://thecreativeindependent.com/privacy-policy
Obsługiwane Języki 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"
            ]
        }
    ]
}