Did Youtube unsubscribe me?

Check if youtube unsubscribes you without asking.

Did Youtube unsubscribe me?คืออะไร?

Did Youtube unsubscribe me? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย T21 Computing และคุณลักษณะหลักของมันคือ "Check if youtube unsubscribes you without asking."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Did Youtube unsubscribe me?

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

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

                        You get notified if you get unsubscribed from a YouTube channel so your favorite creators content stays on your home page. 

This extension will open a new YouTube tab in the background every few hours to check you subscription list.

You must be Signed In.

---------------------------------------
Currently In beta, so please report any issues on the support form on the chrome web store.                    

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

ชื่อ Did Youtube unsubscribe me? Did Youtube unsubscribe me?
ID lbodbdbdjefgplcajojgampojiiamjhe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe
คำอธิบาย Check if youtube unsubscribes you without asking.
ขนาดไฟล์ 16.88 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2020-11-14
วันที่เผยแพร่ 2020-11-14
ผู้พัฒนา T21 Computing
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://f1.t21computing.co.uk/privacy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Did Youtube unsubscribe me?",
    "description": "Check if youtube unsubscribes you without asking.",
    "version": "0.1.3",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/?DYUM=1"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ],
    "icons": {
        "64": "images\/Unsub64.png",
        "128": "images\/Unsub128.png",
        "256": "images\/Unsub256.png"
    },
    "web_accessible_resources": [
        "manage\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "64": "images\/Unsub64.png",
            "128": "images\/Unsub128.png",
            "256": "images\/Unsub256.png"
        }
    }
}