Last active
May 9, 2023 03:42
-
-
Save lacostenycoder/5917a9d1619618805b9c8f912246016b to your computer and use it in GitHub Desktop.
Find your current Google Chrome Theme on the Web store (Mac only)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
username = `whoami`.strip | |
filename = "/Users/#{username}/Library/Application\ Support/Google/Chrome/Default/Preferences" | |
data = File.read filename | |
string = data.split("theme")[1] | |
sha = string.split(/\W/)[7] | |
chrome_store_url = "https://chrome.google.com/webstore/detail/#{sha}" | |
puts chrome_store_url | |
`open #{chrome_store_url}` | |
This doesn't seem to work anymore.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You don't even need to download this. To run this script remotely just open a terminal and past this command:
ruby <(curl https://gist.githubusercontent.com/lacostenycoder/5917a9d1619618805b9c8f912246016b/raw/eb8ad0884ea3ef513633b0b5b78d7bdc351f955d/current_chrome_theme.rb)