QALAM Feedback Form Automation Tool

Makes it so you don't have to fill those feedback forms ever again

Was ist QALAM Feedback Form Automation Tool?

QALAM Feedback Form Automation Tool ist eine Chrome-Erweiterung, die von s.asad18k entwickelt wurde, und ihr Hauptmerkmal ist "Makes it so you don't have to fill those feedback forms ever again".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

QALAM Feedback Form Automation Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie QALAM Feedback Form Automation Tool-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

                        Automatically fills in feedback forms                    

Grundlegende Informationen zur Erweiterung

Name QALAM Feedback Form Automation Tool QALAM Feedback Form Automation Tool
ID fkjcihepmkgphfakckacocmnopgmpbhb
Offizielle URL https://chromewebstore.google.com/detail/qalam-feedback-form-autom/fkjcihepmkgphfakckacocmnopgmpbhb
Beschreibung Makes it so you don't have to fill those feedback forms ever again
Dateigröße 244 KB
Installationsanzahl 121
Aktuelle Version 1.0.1
Letztes Update 2022-03-23
Veröffentlichungsdatum 2022-03-21
Bewertung 4.64/5 Insgesamt 11 Bewertungen
Entwickler s.asad18k
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ShaderOX/nust-feedback-ext
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QALAM Feedback Form Automation Tool",
    "description": "Makes it so you don't have to fill those feedback forms ever again",
    "version": "1.0.1",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Fill Feedback Form"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/qalam.nust.edu.pk\/survey\/*",
                "http:\/\/qalam.nust.edu.pk\/survey\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}