Extended Browse for Netflix

Show Netflix hidden sub-categories.

Extended Browse for Netflixคืออะไร?

Extended Browse for Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mika.vesasto และคุณลักษณะหลักของมันคือ "Show Netflix hidden sub-categories."

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

screenshot
screenshot

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

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

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

                        *************************************
Updated with German Translations.
*************************************

This is a Chrome extension to display better browsing with a hidden categories of a Netflix. These categories isn't available with normal Netflix UI.

Main hidden categories is available from EBN's main dialog box.
There are many more hidden categories available with a included search feature. Like a "Action & Adventure starring Bruce Lee".
Multilanguage support. Translators can help to support more languages.

CHANGELOG:
* 2020/10/03 -- v.1.1.1 Updated German Translations thanks to dotFionn (https://github.com/dotFionn) and updated language code for new Netflix layout.
* 2018/04/03 -- v.1.1.0 Updated to work with Netflix's new layout. No more red extended browse button, but white and it's located in the end of navigation bar.

Language support:
English, Finnish.

If you want your language being supported, please see my project website on Github. https://github.com/Locheed/eb-for-netflix                    

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

ชื่อ Extended Browse for Netflix Extended Browse for Netflix
ID oajemdopahhgfbnikcogidfnaaeglfhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extended-browse-for-netfl/oajemdopahhgfbnikcogidfnaaeglfhn
คำอธิบาย Show Netflix hidden sub-categories.
ขนาดไฟล์ 406 KB
จำนวนการติดตั้ง 1,045
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2020-10-03
วันที่เผยแพร่ 2018-04-03
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา mika.vesasto
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Locheed/eb-for-netflix
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extended Browse for Netflix",
    "description": "Show Netflix hidden sub-categories.",
    "version": "1.1.1",
    "author": "Mika Vesasto",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Extended Browse for Netflix",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "js\/contentscript.js",
                "js\/searchcontent.js",
                "js\/supersearch.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "resources\/*",
        "css\/*",
        "js\/*"
    ]
}