Legit Profile Extension

Makes your social profile looks legit!

Was ist Legit Profile Extension?

Legit Profile Extension ist eine Chrome-Erweiterung, die von rizafahmi entwickelt wurde, und ihr Hauptmerkmal ist "Makes your social profile looks legit!".

Erweiterungsscreenshots

screenshot
screenshot

Legit Profile Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Legit Profile 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

                        🍰 makes your social profile such as github looks legit! Add PRO label for you who hasn't, and more to come.

The code is available at https://github.com/rizafahmi/legit-chrome-extension for you who wants to learn how to create chrome extension. Contribution welcome!                    

Grundlegende Informationen zur Erweiterung

Name Legit Profile Extension Legit Profile Extension
ID lkdnblfhfglpaiibilipagobbeaofphg
Offizielle URL https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg
Beschreibung Makes your social profile looks legit!
Dateigröße 7.82 KB
Installationsanzahl 16
Aktuelle Version 0.2.0
Letztes Update 2019-01-11
Veröffentlichungsdatum 2019-01-10
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler rizafahmi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rizafahmi.com/
Hilfeseite URL https://github.com/rizafahmi/legit-chrome-extension
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Legit Profile Extension",
    "description": "Makes your social profile looks legit!",
    "author": "Riza Fahmi",
    "version": "0.2.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "legit-icon.png",
        "default_title": "Shot and share!"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}