Video Filter for YouTube

Chrome Extension for Video Filter on YouTube

Video Filter for YouTubeคืออะไร?

Video Filter for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fiahfy.blogspot.com และคุณลักษณะหลักของมันคือ "Chrome Extension for Video Filter on YouTube"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Filter for YouTube

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

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

                        - Apply a filter(brightness, contrast and invert) to video.                    

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

ชื่อ Video Filter for YouTube Video Filter for YouTube
ID jgejpcldaimfhfgbjekolgcmkamkanio
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-filter-for-youtube/jgejpcldaimfhfgbjekolgcmkamkanio
คำอธิบาย Chrome Extension for Video Filter on YouTube
ขนาดไฟล์ 110 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2020-04-01
วันที่เผยแพร่ 2020-04-01
ผู้พัฒนา https://fiahfy.blogspot.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": false,
            "js": [
                "content-script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "name": "Video Filter for YouTube",
    "description": "Chrome Extension for Video Filter on YouTube",
    "version": "0.0.2"
}