Youtube Eye: Find popular (month, year, etc)

Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.

Τι είναι το Youtube Eye: Find popular (month, year, etc);

Το Youtube Eye: Find popular (month, year, etc) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Polywocker, και η κύρια λειτουργία του είναι "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Eye: Find popular (month, year, etc)

Λήψη αρχείων επέκτασης Youtube Eye: Find popular (month, year, etc) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Features
----------------------
1. Find a Youtube channel's most popular videos from the past month, year, or any date range. 
2. Search Youtube comments. 

Usage
----------------------
The user must supply their own Youtube API key. Very simple to get, a Youtube walkthrough linked below.

Walkthrough: https://www.youtube.com/watch?v=FpXkDHNyMrE

Source code: https://github.com/polywock/youtubeEye                    

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

Όνομα Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
Επίσημο URL https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Περιγραφή Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Μέγεθος Αρχείου 73.46 KB
Αριθμός Εγκαταστάσεων 168
Τρέχουσα Έκδοση 0.0.7
Τελευταία Ενημέρωση 2022-05-22
Ημερομηνία Δημοσίευσης 2021-07-18
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Polywocker
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/polywock/youtubeEye
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/polywock/youtubeEye/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Eye: Find popular (month, year, etc)",
    "short_name": "Youtube Eye",
    "version": "0.0.7",
    "description": "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.",
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "preamble.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": ".\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "main.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}