Skip to content

Commit 934a089

Browse files
authored
Fix Firefox Dev Profiles and add Chromium, Edge and Chrome Beta, Canary, Dev macOS and Windows. Spelling Fixes. Allows Repo to be Cloned on Windows (#39)
The macOS Profiles did not take into consideration Firefox Developer edition which uses the format qbtxwtsi.dev-edition-default rather than qbtxwtsi.default-release like the standard version. Adds Chromium (ungoogled-chromium), Google Chrome and Edge Beta, Canary and Dev support to macOS and Windows as well. Additionally fixes some typos in the template and deletes the Minibuf files to allow cloning the repo on Windows (They don't seem very important but please correct me if this is wrong)
1 parent 85f6845 commit 934a089

File tree

9 files changed

+22
-10
lines changed

9 files changed

+22
-10
lines changed

bin/config.yaml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,30 @@ Globs:
77
WindowsChromeProfiles:
88
- C:\Users\*\AppData\{Roaming,Local}/BraveSoftware/Brave*/User Data
99
- C:\Users\*\AppData\{Roaming,Local}/Google/Chrome/User Data
10+
- C:\Users\*\AppData\{Roaming,Local}/Google/Chrome SxS/User Data
11+
- C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Beta/User Data
12+
- C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Dev/User Data
13+
- C:\Users\*\AppData\{Roaming,Local}/Chromium/User Data
1014
- C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge/User Data
15+
- C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge SxS/User Data
16+
- C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Beta/User Data
17+
- C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Dev/User Data
1118
- C:\Users\*\AppData\{Roaming,Local}\Opera Software\Opera Stable\
1219
MacOSChromeProfiles:
1320
- /Users/*/Library/Application Support/BraveSoftware/Brave*/
1421
- /Users/*/Library/Application Support/Google/Chrome/
22+
- /Users/*/Library/Application Support/Google/Chrome Beta/
23+
- /Users/*/Library/Application Support/Google/Chrome Canary/
24+
- /Users/*/Library/Application Support/Google/Chrome Dev/
1525
- /Users/*/Library/Application Support/Microsoft Edge/
26+
- /Users/*/Library/Application Support/Microsoft Edge Beta/
27+
- /Users/*/Library/Application Support/Microsoft Edge Canary/
28+
- /Users/*/Library/Application Support/Microsoft Edge Dev/
29+
- /Users/*/Library/Application Support/Chromium/
1630
WindowsFirefoxProfiles:
1731
- C:\Users\*\AppData\{Roaming,Local}\Mozilla\Firefox\Profiles
1832
LinuxFirefoxProfiles:
1933
- /home/*/.mozilla/firefox/*.default*
2034
- /home/*/snap/firefox/common/.mozilla/firefox/*.default*
2135
MacOSFirefoxProfiles:
22-
- /Users/*/Library/Application Support/Firefox/Profiles/*.default*
36+
- /Users/*/Library/Application Support/Firefox/Profiles

compile/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ parameters:
9393
- name: MatchFilename
9494
description: |
9595
If set we use the filename to detect the type of sqlite file.
96-
When unset we use heristics (slower)
96+
When unset we use heuristics (slower)
9797
type: bool
9898
default: Y
9999

@@ -116,7 +116,7 @@ parameters:
116116
default: .
117117

118118
- name: All
119-
description: Select all tagrgets
119+
description: Select all targets
120120
type: bool
121121
default: Y
122122

definitions/Firefox_Bookmarks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FilenameRegex: "places.sqlite"
1717
Globs:
1818
- "{{WindowsFirefoxProfiles}}/*/places.sqlite"
1919
- "{{LinuxFirefoxProfiles}}/places.sqlite"
20-
- "{{MacOSFirefoxProfiles}}/places.sqlite"
20+
- "{{MacOSFirefoxProfiles}}/*/places.sqlite"
2121

2222
Sources:
2323
- Preamble: |

definitions/Firefox_Cookies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FilenameRegex: "cookies.sqlite"
1616
Globs:
1717
- "{{WindowsFirefoxProfiles}}/*/cookies.sqlite"
1818
- "{{LinuxFirefoxProfiles}}/cookies.sqlite"
19-
- "{{MacOSFirefoxProfiles}}/cookies.sqlite"
19+
- "{{MacOSFirefoxProfiles}}/*/cookies.sqlite"
2020

2121
Sources:
2222
- VQL: |

definitions/Firefox_Downloads.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FilenameRegex: "downloads.sqlite"
1616
Globs:
1717
- "{{WindowsFirefoxProfiles}}/*/downloads.sqlite"
1818
- "{{LinuxFirefoxProfiles}}/downloads.sqlite"
19-
- "{{MacOSFirefoxProfiles}}/downloads.sqlite"
19+
- "{{MacOSFirefoxProfiles}}/*/downloads.sqlite"
2020

2121
Sources:
2222
- VQL: |

definitions/Firefox_Favicons.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FilenameRegex: "favicons.sqlite"
1616
Globs:
1717
- "{{WindowsFirefoxProfiles}}/*/favicons.sqlite"
1818
- "{{LinuxFirefoxProfiles}}/favicons.sqlite"
19-
- "{{MacOSFirefoxProfiles}}/favicons.sqlite"
19+
- "{{MacOSFirefoxProfiles}}/*/favicons.sqlite"
2020

2121
Sources:
2222
- VQL: |

definitions/Firefox_FormHistory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FilenameRegex: "formhistory.sqlite"
1717
Globs:
1818
- "{{WindowsFirefoxProfiles}}/*/formhistory.sqlite"
1919
- "{{LinuxFirefoxProfiles}}/formhistory.sqlite"
20-
- "{{MacOSFirefoxProfiles}}/formhistory.sqlite"
20+
- "{{MacOSFirefoxProfiles}}/*/formhistory.sqlite"
2121

2222
Sources:
2323
- VQL: |

docs/content/docs/rules/ *Minibuf-1*

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/content/docs/rules/# *Minibuf-1*#

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)