Netflix Pixie

Netflix dual subtitles, favorite genres list, history, auto skip and etc... in best UI/UX

Netflix Pixieคืออะไร?

Netflix Pixie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tidpoe และคุณลักษณะหลักของมันคือ "Netflix dual subtitles, favorite genres list, history, auto skip and etc... in best UI/UX"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Pixie

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

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

                        Welcome to Netflix Pixie!
Log:
    2022-10-23   Fixing history function.
    2022-08-29   Fixing Movie player page, icon no show bug.
    2022-07-10   Fixing secondary subtitle adjustment & removed primary subtitle adjustment.
    2022-06-19   Partially fixed secondary subtitle not showing bug.
    2022-04-01 「Dual subtitles」 and「Jump to the last line」functions added. 🥳

Here are the basics:

🎥Customizable genre list
    - Go to a genre page and add it to the list.
    - Genre items are all draggable, arrange the list in your own way.
    - Drag items to the trash can if you want to delete them.

🧭 History List
    - Review the history to find the similar tag or genre you would like.
    - A quick look at the current progress.
    - An adjustable number of history items.

🎮Setting
    - Dual subtitles
        - Get a second subtitle (Just choose in the Netflix subtitle menu)
        - Jump back to the last line (in case you missed it 😉)
        - Adjustable font size.
        - Adjustable subtitles height.
    - Hotkeys
        - To toggle the Netflix Pixie panel.
        - To rewind/fast-forward in desirable secs.
        - To set play rate at a desirable speed.
    - Automation
        - Auto skip intro.
        - Auto skip recap.
        - Stop auto-playing(watch film credits).

Feel free to Email us if you need more functions or you find an issue/bug:
          [email protected]

Disclaimer:
NETFLIX is a trademark of Netflix, Inc.. This extension and its developer are in no way affiliated with Netflix, Inc..                    

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

ชื่อ Netflix Pixie Netflix Pixie
ID lbcpkafjpgemhnnfecglcacniceiimik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-pixie/lbcpkafjpgemhnnfecglcacniceiimik
คำอธิบาย Netflix dual subtitles, favorite genres list, history, auto skip and etc... in best UI/UX
ขนาดไฟล์ 632 KB
จำนวนการติดตั้ง 222
เวอร์ชันปัจจุบัน 0.0.0.7
อัปเดตครั้งล่าสุด 2022-10-24
วันที่เผยแพร่ 2022-03-21
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา tidpoe
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Netflix-Pixie/NetflixPixie/wiki
URL หน้านโยบายความเป็นส่วนตัว https://github.com/Netflix-Pixie/NetflixPixie/wiki/Privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Pixie",
    "version": "0.0.0.7",
    "manifest_version": 3,
    "description": "Netflix dual subtitles, favorite genres list, history, auto skip and etc... in best UI\/UX",
    "icons": {
        "512": "icons\/NetflixPixieLogo.png"
    },
    "action": [],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content_scripts\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content_scripts\/inject.js",
                "content_scripts\/defaultGenresList.js",
                "content_scripts\/dualSubs*",
                "lib\/jquery.min.js",
                "lib\/fontawesome.js",
                "lib\/sortable.min.js",
                "lib\/jszip.js",
                "*.svg",
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}