YouTube Suggestion Extractor

The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…

YouTube Suggestion Extractorคืออะไร?

YouTube Suggestion Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bigtechies.com และคุณลักษณะหลักของมันคือ "The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Suggestion Extractor

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Suggestion Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and providing suggestions from the currently active YouTube page. This extension is particularly useful for users who frequently explore YouTube and want to streamline their experience in discovering new content.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Suggestion Extractor YouTube Suggestion Extractor
ID fihnbdolhnfphjjimamjegfninbfffhl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-suggestion-extrac/fihnbdolhnfphjjimamjegfninbfffhl
คำอธิบาย The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…
ขนาดไฟล์ 18.47 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2024-02-16
วันที่เผยแพร่ 2024-02-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://www.bigtechies.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.bigtechies.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Suggestion Extractor",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}