Just Save
A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Just Saveとは何ですか?
Just Saveはmeによって開発されたChromeの拡張機能で、その主な機能は「A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.」です。
拡張機能のスクリーンショット
Just Save拡張機能のCRXファイルをダウンロード
Just Save拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Just Save is a simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. Just Save adds a single item to your context menu that saves the clicked image, link, or page immediately to your default downloads folder, without requiring any additional input. Currently, Just Saved is available on both Firefox (https://addons.mozilla.org/en-US/firefox/addon/just-save/) and Chrome (https://chrome.google.com/webstore/detail/plaggkdohpgdahkidgjmbhafnbbacpno), with support for other browsers planned. Just Save is built on top of the WebExtensions API, which means it can work across multiple browsers and will remain compatible with Firefox even after XUL-based addons become deprecated. Just Save is completely free and open-source. Feel free to visit the GitHub repo (https://github.com/lewisl9029/just-save-webextension) if you'd like to see the source code, report an issue, or contribute changes.
拡張機能の基本情報
名前 | Just Save |
ID | plaggkdohpgdahkidgjmbhafnbbacpno |
公式URL | https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno |
説明 | A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. |
ファイルサイズ | 15.02 KB |
インストール数 | 3,652 |
現在のバージョン | 0.0.2 |
最終更新日 | 2016-04-30 |
公開日 | 2016-04-29 |
評価 | 4.43/5 合計 21 レビュー |
開発者 | me |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/lewisl9029/just-save-webextension |
ヘルプページのURL | https://github.com/lewisl9029/just-save-webextension |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Just Save", "version": "0.0.2", "description": "A simple WebExtension for skipping the \"Save As\" dialog when saving images, pages and links.", "icons": { "48": "icons\/just-save-48.png", "96": "icons\/just-save-96.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "45.0" } }, "background": { "persistent": false, "scripts": [ "just-save.js" ] }, "permissions": [ "contextMenus", "downloads" ] } |