File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
// ==UserScript==
2
- // @name Lovable Downloader (v1.1.5 - Fix nested button bug )
2
+ // @name Lovable Downloader (v1.1.6 - Fix incorrect download all button position )
3
3
// @namespace https://github.com/soranoo/lovable-downloader
4
- // @version 1.1.5
4
+ // @version 1.1.6
5
5
// @description Fix incorrect 3rd-party auth token extraction.
6
6
// @author Freeman (soranoo)
7
7
// @match https://lovable.dev/projects/*
20
20
const SIDEBAR_CONTENT_SELECTOR = ".overflow-x-auto.p-2" ;
21
21
const FILE_ENTRY_SELECTOR = 'div.group.flex.cursor-pointer.items-center' ;
22
22
const TRIGGER_BUTTON_SELECTOR = 'button[aria-label="Code viewer"]' ;
23
- const TOOLBAR_CONTAINER_SELECTOR = '.cursor-pointer' ;
23
+ const TOOLBAR_CONTAINER_SELECTOR = 'button .cursor-pointer' ;
24
24
const DOWNLOAD_ALL_BUTTON_ID = 'lovable-download-all-button' ;
25
25
const DOWNLOAD_ICON_CLASS = 'lovable-download-icon' ;
26
26
const DOWNLOAD_ELEMENT_HIDDEN_CLASS = 'lovable-download-hidden' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Lovable Downloader" ,
3
- "version" : " 1.1.5 " ,
3
+ "version" : " 1.1.6 " ,
4
4
"manifest_version" : 3 ,
5
5
"description" : " Downloads source code from lovable.dev with a single click" ,
6
6
"author" : " Freeman (soranoo)" ,
Original file line number Diff line number Diff line change 1
1
// ==UserScript==
2
- // @name Lovable Downloader (v1.1.5 - Fix nested button bug )
2
+ // @name Lovable Downloader (v1.1.6 - Fix incorrect download all button position )
3
3
// @namespace https://github.com/soranoo/lovable-downloader
4
- // @version 1.1.5
4
+ // @version 1.1.6
5
5
// @description Fix incorrect 3rd-party auth token extraction.
6
6
// @author Freeman (soranoo)
7
7
// @match https://lovable.dev/projects/*
20
20
const SIDEBAR_CONTENT_SELECTOR = ".overflow-x-auto.p-2" ;
21
21
const FILE_ENTRY_SELECTOR = 'div.group.flex.cursor-pointer.items-center' ;
22
22
const TRIGGER_BUTTON_SELECTOR = 'button[aria-label="Code viewer"]' ;
23
- const TOOLBAR_CONTAINER_SELECTOR = '.cursor-pointer' ;
23
+ const TOOLBAR_CONTAINER_SELECTOR = 'button .cursor-pointer' ;
24
24
const DOWNLOAD_ALL_BUTTON_ID = 'lovable-download-all-button' ;
25
25
const DOWNLOAD_ICON_CLASS = 'lovable-download-icon' ;
26
26
const DOWNLOAD_ELEMENT_HIDDEN_CLASS = 'lovable-download-hidden' ;
You can’t perform that action at this time.
0 commit comments