Save Video As
Save Video As is a video downloader: You can save any online video as file.
什麼是Save Video As?
Save Video As是由Anastasiya Lubimova開發的Chrome擴展程式,該擴展的主要功能是“Save Video As is a video downloader: You can save any online video as file.”。
擴展截圖
下載Save Video As擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | fhmhocodenpjbbmndbladmhbhpcogejc |
| 官方網址 | 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"
}
} | |