Loner Hulu

Removes that annoying Refer a Friend button from Hulu pages

Loner Huluคืออะไร?

Loner Hulu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KacobJeith และคุณลักษณะหลักของมันคือ "Removes that annoying Refer a Friend button from Hulu pages"

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

screenshot
screenshot
screenshot

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

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

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

                        A simple Chrome Extension that removes the annoying "Refer a Friend" button from Hulu

If you have recently watched Hulu on your computer, you may have experienced a mild annoyance at the giant green "Refer a Friend" button that obscures part of the show you're watching. You could always full-screen the viewer... but sometimes you just don't want to.

With the LonerHulu chrome extension, you can binge on your favorite Hulu shows without that giant green button reminding you that your friends are probably doing cooler things than you are right now.

** Disclaimer ** This extension is not affiliated with Hulu.                    

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

ชื่อ Loner Hulu Loner Hulu
ID doccdfcideapgphmoflilmpkjndlglfh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/loner-hulu/doccdfcideapgphmoflilmpkjndlglfh
คำอธิบาย Removes that annoying Refer a Friend button from Hulu pages
ขนาดไฟล์ 12.57 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-07-07
วันที่เผยแพร่ 2017-07-07
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา KacobJeith
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Loner Hulu",
    "description": "Removes that annoying Refer a Friend button from Hulu pages",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.hulu.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}