The Creative Independent’s Extension

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

Was ist The Creative Independent’s Extension?

The Creative Independent’s Extension ist eine Chrome-Erweiterung, die von https://thecreativeindependent.com entwickelt wurde, und ihr Hauptmerkmal ist "Displays a quote from The Creative Independent on your new tab.".

Erweiterungsscreenshots

screenshot

The Creative Independent’s Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie The Creative Independent’s Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name The Creative Independent’s Extension The Creative Independent’s Extension
ID hfpihhnbilfkcjakaeopanccjlcnnefp
Offizielle URL https://chromewebstore.google.com/detail/the-creative-independent%E2%80%99/hfpihhnbilfkcjakaeopanccjlcnnefp
Beschreibung Displays a quote from The Creative Independent on your new tab.
Dateigröße 25.36 KB
Installationsanzahl 1,464
Aktuelle Version 2.0.2
Letztes Update 2022-09-27
Veröffentlichungsdatum 2019-10-30
Bewertung 4.92/5 Insgesamt 12 Bewertungen
Entwickler https://thecreativeindependent.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://thecreativeindependent.com/extension/
Hilfeseite URL https://thecreativeindependent.com/extension/
URL der Datenschutzrichtlinien-Seite https://thecreativeindependent.com/privacy-policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}