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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |