QALAM Feedback Form Automation Tool

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

QALAM Feedback Form Automation Tool란 무엇입니까?

QALAM Feedback Form Automation Tool은(는) s.asad18k에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes it so you don't have to fill those feedback forms ever again"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

QALAM Feedback Form Automation Tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automatically fills in feedback forms                    

확장 프로그램 기본 정보

이름 QALAM Feedback Form Automation Tool QALAM Feedback Form Automation Tool
ID fkjcihepmkgphfakckacocmnopgmpbhb
공식 URL https://chromewebstore.google.com/detail/qalam-feedback-form-autom/fkjcihepmkgphfakckacocmnopgmpbhb
설명 Makes it so you don't have to fill those feedback forms ever again
파일 크기 244 KB
설치 횟수 121
현재 버전 1.0.1
최근 업데이트 2022-03-23
출시 날짜 2022-03-21
평점 4.64/5 총 11 개의 평점
개발자 s.asad18k
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ShaderOX/nust-feedback-ext
지원되는 언어 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'"
    }
}