UUID Finder

This extension will automatically display the UUID at the top of the page.

Was ist UUID Finder?

UUID Finder ist eine Chrome-Erweiterung, die von Professor Premium entwickelt wurde, und ihr Hauptmerkmal ist "This extension will automatically display the UUID at the top of the page.".

Erweiterungsscreenshots

screenshot
screenshot

UUID Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie UUID Finder-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

                        This extension will automatically filter the page source code for Chegg URLs and display the UUID at the top of the page.
You could inspect Chegg URLs and hit CTRL+F to find the UUID. This extension simply automates that.

It does not show answer or anything that violates Chegg TOS.                    

Grundlegende Informationen zur Erweiterung

Name UUID Finder UUID Finder
ID hdenpcfifhgoabfkmikpfbgoldfnddjk
Offizielle URL https://chromewebstore.google.com/detail/uuid-finder/hdenpcfifhgoabfkmikpfbgoldfnddjk
Beschreibung This extension will automatically display the UUID at the top of the page.
Dateigröße 16.24 KB
Installationsanzahl 1,072
Aktuelle Version 0.0.3
Letztes Update 2021-10-27
Veröffentlichungsdatum 2021-10-22
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Professor Premium
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/gNabeen/UUID-Finder/
URL der Datenschutzrichtlinien-Seite https://www.chegg.com/privacypolicy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UUID Finder",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "This extension will automatically display the UUID at the top of the page.",
    "homepage_url": "http:\/\/www.professorbot.me",
    "icons": {
        "16": "icons\/icon-19.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "icons\/icon-19.png",
        "default_title": "UUID Finder",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "https:\/\/www.chegg.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chegg.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}