Save Video As

Save Video As is a video downloader: You can save any online video as file.

Save Video Asคืออะไร?

Save Video As เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anastasiya Lubimova และคุณลักษณะหลักของมันคือ "Save Video As is a video downloader: You can save any online video as file."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save Video As

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

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

                        Help you to download videos from web sites.

Warning:
Google Chrome policies don't allow to download from YouTube.                    

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

ชื่อ Save Video As Save Video As
ID fhmhocodenpjbbmndbladmhbhpcogejc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/save-video-as/fhmhocodenpjbbmndbladmhbhpcogejc
คำอธิบาย Save Video As is a video downloader: You can save any online video as file.
ขนาดไฟล์ 101 KB
จำนวนการติดตั้ง 27,807
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2021-02-13
วันที่เผยแพร่ 2017-08-14
คะแนน 2.88/5 รวมทั้งหมด 248 คะแนน
ผู้พัฒนา Anastasiya Lubimova
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ de,en,fr,es,it,pt-BR,pt-PT,ru
manifest.json
{
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "description": "__MSG_ext_description__",
    "version": "1.8",
    "content_scripts": [
        {
            "js": [
                "find_video_urls.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "permissions": [
        "downloads",
        "tabs",
        "storage",
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "page": "process.html"
    },
    "browser_action": {
        "default_icon": "icons\/48.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_ext_name__"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png"
    }
}