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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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\/*"
            ]
        }
    ]
}