Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexopus/SaveImageRouter
Chrome plugin to save images to custom locations from the context menu
https://github.com/alexopus/SaveImageRouter
chrome chrome-extension downloader extension
Last synced: 16 days ago
JSON representation
Chrome plugin to save images to custom locations from the context menu
- Host: GitHub
- URL: https://github.com/alexopus/SaveImageRouter
- Owner: alexopus
- License: mit
- Created: 2017-04-07T16:55:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-03T21:09:25.000Z (about 5 years ago)
- Last Synced: 2024-08-01T05:20:43.071Z (3 months ago)
- Topics: chrome, chrome-extension, downloader, extension
- Language: HTML
- Size: 241 KB
- Stars: 20
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# No longer maintained
I am no longer actively maintaining this extension until further notice, because I have switched back to Firefox.
Feel free to fork it and do whatever the license permits.
Or use another similar extension:
[Save In...](https://chrome.google.com/webstore/detail/save-in%E2%80%A6/jpblofcpgfjikaapfedldfeilmpgkedf?hl=en-US)
(that is also available for Firefox).# Save Image Router
Chrome plugin to save images to custom location from the context menu.
![screenshot](./screenshot.png?raw=true "screenshot")
[Try via Chrome Web Store](https://chrome.google.com/webstore/detail/save-image-router/pkimacjjcahflldkhofmdjlelllacbil).
### Saving images outside of the Chrome download location
Chrome only allows saving downloads inside the configured download location.
If you really want to work around it, you can make links inside your chrome doanload location, pointing to any location on your system:
- Windows: from the command line (cmd.exe from start->run) type the following command (replace the paths accordingly) and point the extension to the created link name:
```
mklink /D "C:\yourChromeDownloads\LinkName" "D:\yourDesiredLocation"
```- Linux/OSX: create a symbolic link to the desired directory with the following command (replace the paths accordingly) and point the extension to the created directory name inside the Chrome Downloads location:
```
ln -s /Path/to/desired/directory /DirectoryName/inside/Chrome/downloads
```