QALAM Feedback Form Automation Tool

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

Vad är QALAM Feedback Form Automation Tool?

QALAM Feedback Form Automation Tool är en Chrome-tillägg utvecklad av s.asad18k, och dess huvudfunktion är "Makes it so you don't have to fill those feedback forms ever again".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner QALAM Feedback Form Automation Tool-förlängningens CRX-fil

Ladda ner QALAM Feedback Form Automation Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Automatically fills in feedback forms                    

Grundläggande Information om Tillägg

Namn QALAM Feedback Form Automation Tool QALAM Feedback Form Automation Tool
ID fkjcihepmkgphfakckacocmnopgmpbhb
Officiell webbadress https://chromewebstore.google.com/detail/qalam-feedback-form-autom/fkjcihepmkgphfakckacocmnopgmpbhb
Beskrivning Makes it so you don't have to fill those feedback forms ever again
Filstorlek 244 KB
Antal Installationer 121
Aktuell Version 1.0.1
Senast Uppdaterad 2022-03-23
Publiceringsdatum 2022-03-21
Betyg 4.64/5 Totalt 11 Betyg
Utvecklare s.asad18k
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ShaderOX/nust-feedback-ext
Stödda Språk 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'"
    }
}