Twitch API Injector

Inject client id and access token headers into api requests automatically.

Twitch API Injector란 무엇입니까?

Twitch API Injector은(는) swiftyspiffy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject client id and access token headers into api requests automatically."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Twitch API Injector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to hit API endpoints in your browser by injecting the Client ID and Authorization headers into your request before sending. 

This is done by you providing the extension a TwitchDev application client id, client secret, and refresh token. The extension will allow you to generate a bearer token. Once completed, the extension will inject the client id you provided, and the generated access token in requests made to api.twitch.tv/helix, allowing you to browse the API in your browser (as you would prior to the requirement of these fields).

Changes: 

v1.4:
- Bug fix related to automatic refreshing access token.

v1.3:
- Support for automatically refreshing access token at the determined expiration date/time

v1.2:
- Support for Chrome's Manifest v3. This means removing webRequest and webRequestBlocking in exchange for declarativeNetRequest permission.
- Adds support for using one time "code" values, which are exchanged for bearer and refresh tokens.

As always, you can see the changes at the repo here: https://github.com/swiftyspiffy/Twitch-API-Injector                    

확장 프로그램 기본 정보

이름 Twitch API Injector Twitch API Injector
ID dkkaeileenafgjaebkckcldgmjbidbbi
공식 URL https://chromewebstore.google.com/detail/twitch-api-injector/dkkaeileenafgjaebkckcldgmjbidbbi
설명 Inject client id and access token headers into api requests automatically.
파일 크기 1.01 MB
설치 횟수 25
현재 버전 1.4
최근 업데이트 2024-02-12
출시 날짜 2021-11-26
평점 5.00/5 총 1 개의 평점
개발자 swiftyspiffy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/swiftyspiffy/Twitch-API-Injector
도움말 페이지 URL https://github.com/swiftyspiffy/Twitch-API-Injector
개인정보 보호 정책 페이지 URL https://github.com/swiftyspiffy/Twitch-Username-and-User-ID-Translator/blob/master/PRIVACY_POLICY.md
지원되는 언어 en
manifest.json
{
    "action": {
        "default_icon": {
            "150": "icon.png"
        },
        "default_popup": "form.html"
    },
    "description": "Inject client id and access token headers into api requests automatically.",
    "icons": {
        "150": "icon.png"
    },
    "manifest_version": 3,
    "name": "Twitch API Injector",
    "options_page": "form.html",
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.twitch.tv\/helix\/*"
    ],
    "background": {
        "service_worker": "execute.js"
    },
    "short_name": "TwitchAPIInjector",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4"
}