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.

Vad är Youtube Eye: Find popular (month, year, etc)?

Youtube Eye: Find popular (month, year, etc) är en Chrome-tillägg utvecklad av Polywocker, och dess huvudfunktion är "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Youtube Eye: Find popular (month, year, etc)-förlängningens CRX-fil

Ladda ner Youtube Eye: Find popular (month, year, etc)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
Officiell webbadress https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Beskrivning Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Filstorlek 73.46 KB
Antal Installationer 168
Aktuell Version 0.0.7
Senast Uppdaterad 2022-05-22
Publiceringsdatum 2021-07-18
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Polywocker
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/polywock/youtubeEye
Hjälpsida URL https://github.com/polywock/youtubeEye/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}