Watch on LBRY

This plugin automatically redirects you to the LBRY network when it detects that the video is there. You can check source code…

Τι είναι το Watch on LBRY;

Το Watch on LBRY είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Madiator2011, και η κύρια λειτουργία του είναι "This plugin automatically redirects you to the LBRY network when it detects that the video is there. You can check source code…".

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

screenshot

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

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

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

                        This plugin automatically redirects you to the LBRY network when it detects that the video is there.

You can check source code here: https://github.com/LBRYFoundation/Watch-on-LBRY

What's Changed:
- Scrapper API got replaced by Madiator Finder API
- New UI design
- Added leaderboard system for Madiator Finder
- Added profile system using private/public keys
- Manifest v3 support

About Madiator Finder API:
Madiator Finder API allows you to contribute to community database of videos that are synced between LBRY Protocol and YouTube. To contribute to database you need to select Madiator Finder API.
If you want to be included in leaderboard you need to generate own profile from extension. It will generate public/private key that will allow to assign points based on your contribution (every channel/video you find count as one point). If you do not generate profile the api won't be counting points but will save videos you find to database (anonymous). Our API do not collect any informations like IP and everyone can purge their data using button on extension popup.


Disclaimer!
This plugin is not made by LBRY Inc                    

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

Όνομα Watch on LBRY Watch on LBRY
ID jjmbbhopnjdjnpceiecihldbhibchgek
Επίσημο URL https://chromewebstore.google.com/detail/watch-on-lbry/jjmbbhopnjdjnpceiecihldbhibchgek
Περιγραφή This plugin automatically redirects you to the LBRY network when it detects that the video is there. You can check source code…
Μέγεθος Αρχείου 677 KB
Αριθμός Εγκαταστάσεων 663
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2022-05-05
Ημερομηνία Δημοσίευσης 2020-02-07
Αξιολόγηση 4.68/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής Madiator2011
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/LBRYFoundation/Watch-on-LBRY
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Watch on LBRY",
    "version": "2.0.0",
    "icons": {
        "16": "assets\/icons\/wol\/icon16.png",
        "48": "assets\/icons\/wol\/icon48.png",
        "128": "assets\/icons\/wol\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/",
        "https:\/\/yewtu.be\/",
        "https:\/\/vid.puffyan.us\/",
        "https:\/\/invidio.xamh.de\/",
        "https:\/\/invidious.kavin.rocks\/",
        "https:\/\/api.odysee.com\/",
        "https:\/\/lbry.tv\/",
        "https:\/\/odysee.com\/",
        "https:\/\/madiator.com\/",
        "https:\/\/finder.madiator.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/popup\/index.html",
                "pages\/YTtoLBRY\/index.html",
                "pages\/import\/index.html",
                "assets\/icons\/lbry\/lbry-logo.svg",
                "assets\/icons\/lbry\/odysee-logo.svg",
                "assets\/icons\/lbry\/madiator-logo.svg"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "action": {
        "default_title": "Watch on LBRY",
        "default_popup": "pages\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/yewtu.be\/*",
                "https:\/\/vid.puffyan.us\/*",
                "https:\/\/invidio.xamh.de\/*",
                "https:\/\/invidious.kavin.rocks\/*"
            ],
            "js": [
                "scripts\/ytContent.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker-entry-point.js"
    }
}