Detector APIs Extension

The extension supports getting all APIs and CURL command when load a website.

Detector APIs Extension란 무엇입니까?

Detector APIs Extension은(는) nguyenvantuan2391996에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension supports getting all APIs and CURL command when load a website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Detector APIs Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension was developed by Tuan Nguyen, who is a software engineer.

The detector APIs extension doesn't show ads and doesn't send users' data anywhere. It's fully open-source: https://github.com/nguyenvantuan2391996/extensions-development/tree/master/detector-apis-extension

Before you install it, disable similar extensions. Enjoy watching!

Contact me at: [email protected]

Donate for me at: https://paypal.me/Newslette247

Version 1.0.4: adding detect api with post and put method                    

확장 프로그램 기본 정보

이름 Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
공식 URL https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
설명 The extension supports getting all APIs and CURL command when load a website.
파일 크기 53.53 KB
설치 횟수 259
현재 버전 1.0.4
최근 업데이트 2023-09-12
출시 날짜 2023-03-07
평점 5.00/5 총 2 개의 평점
개발자 nguyenvantuan2391996
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detector APIs Extension",
    "description": "The extension supports getting all APIs and CURL command when load a website.",
    "version": "1.0.4",
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": "images\/detector-apis-extension.png"
    },
    "icons": {
        "128": "images\/detector-apis-extension.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/constants.js",
                "js\/utils.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webRequest"
    ],
    "manifest_version": 3
}