Organize Downloads by Month
Automatically organize downloads inside default download location into sub-directories labelled by year and month.
Was ist Organize Downloads by Month?
Organize Downloads by Month ist eine Chrome-Erweiterung, die von paulpark03 entwickelt wurde, und ihr Hauptmerkmal ist "Automatically organize downloads inside default download location into sub-directories labelled by year and month.".
Erweiterungsscreenshots
Organize Downloads by Month-Erweiterungs-CRX-Datei herunterladen
Laden Sie Organize Downloads by Month-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Automatically organize Downloads folder by year & month. Instructions: 1. Set "Download location" in Advanced Settings. 2. Download anything! 3. Find your download at "/ - /" For example, if you were downloading file named "helloworld.txt" on June 11, 2014 and your default Download location is set to "C:\Users\Paul\Downloads", then you'd find the downloaded file here: "C:\Users\Paul\Downloads\2014-06\helloworld.txt" This extension will work whether you have "Ask where to save each file before downloading" enabled or disabled. It's compatible with Saft Extension's Sort Download by Date function on Safari. The script is based on download_filename_controller sample extension.
Grundlegende Informationen zur Erweiterung
Name | Organize Downloads by Month |
ID | bjlglbbbnhbpbepkhdbajopdgdcjjhcc |
Offizielle URL | https://chromewebstore.google.com/detail/organize-downloads-by-mon/bjlglbbbnhbpbepkhdbajopdgdcjjhcc |
Beschreibung | Automatically organize downloads inside default download location into sub-directories labelled by year and month. |
Dateigröße | 3.9 KB |
Installationsanzahl | 215 |
Aktuelle Version | 0.1 |
Letztes Update | 2023-12-18 |
Veröffentlichungsdatum | 2014-06-11 |
Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
Entwickler | paulpark03 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Organize Downloads by Month", "description": "Automatically organize downloads inside default download location into sub-directories labelled by year and month.", "version": "0.1", "background": { "scripts": [ "bg.js" ], "persistent": false }, "permissions": [ "downloads" ], "content_security_policy": "default-src 'none'; script-src 'self'", "manifest_version": 2 } |