BTS Eng Sub Finder

Base Level Extension

BTS Eng Sub Finderคืออะไร?

BTS Eng Sub Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ResRes และคุณลักษณะหลักของมันคือ "Base Level Extension"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BTS Eng Sub Finder

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

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

                        Fed up on checking to see if the BTS video you're watching has Eng Subs? Or trying to find a fan subbed equivalent? 

This extension will automatically turn on Eng Subs if the BANGTANTV or BigHitLabels video has them, and if it doesn't, the extension will open the correct Bangtan Subs video.                    

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

ชื่อ BTS Eng Sub Finder BTS Eng Sub Finder
ID odhonopbhndpieabkjcgojjlkaecliad
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/bts-eng-sub-finder/odhonopbhndpieabkjcgojjlkaecliad
คำอธิบาย Base Level Extension
ขนาดไฟล์ 98.72 KB
จำนวนการติดตั้ง 170
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2020-12-10
วันที่เผยแพร่ 2020-12-10
ผู้พัฒนา ResRes
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BTS Eng Sub Finder",
    "description": "Base Level Extension",
    "version": "0.0.0.3",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "js": [
                "onYouTube.js",
                "jquery-3.5.1.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/c\/BangtanSubs\/search*",
                "http:\/\/*.youtube.com\/c\/BangtanSubs\/search*"
            ],
            "js": [
                "subbedVidPage.js",
                "jquery-3.5.1.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "hello_extensions copy.png",
        "default_popup": "hello.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens hello.html"
        }
    }
}