Twitch API Injector

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

Twitch API Injector क्या है?

Twitch API Injector swiftyspiffy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject client id and access token headers into api requests automatically."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch API Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}