Hypeshot

Personalize the way you watch sports

Τι είναι το Hypeshot;

Το Hypeshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://hypeshot.io, και η κύρια λειτουργία του είναι "Personalize the way you watch sports".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Hypeshot

Λήψη αρχείων επέκτασης Hypeshot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Hypeshot is a free Chrome extension that lets you track your fantasy players and chat with other fans without leaving the stream. 

Hypeshot works on popular free streams like Reddit streams and paid streams like Hulu and YouTubeTV in both full-screen and non full-screen modes. In fact, on any site in general, you can click on the extension icon to turn on Hypeshot. 

Setup Process:
1) Download the extension
2) Create an account and sync your fantasy leagues
3) Pin the extension icon (puzzle icon on top right of browser)
4) Click on the control button to activate Hypeshot and select the features you’d like to use- it will appear on the right side of the screen on most streaming sites
5) If you don’t see it, click the pinned extension icon to enable Hypeshot for that site

If you have any issues, questions, or feedback, drop us a line at [email protected], join our discord server: https://discord.com/invite/u5eyq99RwK, or DM us on Twitter: https://twitter.com/HypeshotHQ (the fastest way to get to us is on discord)
 
* Permissions: 
1) Access to email to communicate about product issues and updates
2) Access to recent browser history to determine referral eligibility                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Hypeshot Hypeshot
ID odeflmfjakenehhkebljdbdmoifippec
Επίσημο URL https://chromewebstore.google.com/detail/hypeshot/odeflmfjakenehhkebljdbdmoifippec
Περιγραφή Personalize the way you watch sports
Μέγεθος Αρχείου 13.46 MB
Αριθμός Εγκαταστάσεων 1,916
Τρέχουσα Έκδοση 2.1.1.12
Τελευταία Ενημέρωση 2022-11-02
Ημερομηνία Δημοσίευσης 2020-03-01
Αξιολόγηση 4.85/5 Συνολικά 27 Αξιολογήσεις
Προγραμματιστής https://hypeshot.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://www.hypeshot.io/faq
URL της Σελίδας Πολιτικής Απορρήτου https://app.termly.io/document/privacy-policy/cadaf36a-81b6-4e14-9408-114dec3b140c
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon_inactive.png",
        "default_popup": "popup.html"
    },
    "name": "Hypeshot",
    "description": "Personalize the way you watch sports",
    "version": "2.1.1.12",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "indexScript.js"
            ],
            "exclude_matches": [
                "https:\/\/fantasy.espn.com\/basketball\/team?leagueId=*",
                "*:\/\/*.espn.com\/fantasy\/basketball\/*"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "notificationScript.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "controlButtonScript.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.espn.com\/fantasy\/football\/*",
                "*:\/\/*.espn.com\/fantasy\/basketball\/*",
                "*:\/\/*.hypeshot.io\/*",
                "*:\/\/*.hypeshot-test.com\/*",
                "*:\/\/master.d44kt561uoeud.amplifyapp.com\/*",
                "*:\/\/*.basketball.fantasysports.yahoo.com\/*",
                "*:\/\/*.sleeper.app\/*"
            ],
            "exclude_matches": [
                "https:\/\/fantasy.espn.com\/basketball\/league*"
            ],
            "js": [
                "onboardingScript.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/unpkg.com; object-src 'self'",
    "externally_connectable": {
        "matches": [
            "*:\/\/hypeshot-test.com\/*",
            "*:\/\/master.d44kt561uoeud.amplifyapp.com\/*",
            "*:\/\/hypeshot.io\/*",
            "*:\/\/app.hypeshot.io\/*"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "identity",
        "identity.email",
        "history",
        "tabs"
    ],
    "web_accessible_resources": [
        "*.css"
    ]
}