diff --git a/LICENSE.md b/LICENSE.md
index a9d1653..92953d6 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,4 +1,4 @@
-Copyright (c) 2014–2016 Marc Görtz
+Copyright (c) 2014–2017 Marc Görtz
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/README.md b/README.md
index e3eb4e7..1fffd19 100644
--- a/README.md
+++ b/README.md
@@ -16,9 +16,14 @@ extensions I use on a regular basis.
fancy Jira icon in PopClip and… abracadabra, there you go!
Additionally the URL is put into your clipboard.
+ * **Open in Chrome Canary**
+ This is almost the same extension as
+ [Open in Chrome](http://pilotmoon.com/popclip/extensions//page/OpenInChrome),
+ but it opens the current URL in Chrome Canary.
+
## License
-Copyright (c) 2014–2016 Marc Görtz
+Copyright (c) 2014–2017 Marc Görtz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
diff --git a/open-in-canary.popclipextz b/open-in-canary.popclipextz
new file mode 100644
index 0000000..2057b3e
Binary files /dev/null and b/open-in-canary.popclipextz differ
diff --git a/src/open-in-canary/Config.plist b/src/open-in-canary/Config.plist
new file mode 100644
index 0000000..21cc9ac
--- /dev/null
+++ b/src/open-in-canary/Config.plist
@@ -0,0 +1,46 @@
+
+
+
+
+ Actions
+
+
+ Image File
+ chrome.png
+ Requirements
+
+ httpurls
+
+ Shell Script File
+ open-in-canary.sh
+ Title
+ Open in Chrome Canary
+
+
+ Apps
+
+
+ Check Installed
+
+ Bundle Identifier
+ com.google.Chrome.Canary
+ Link
+ https://www.google.com/chrome/browser/canary.html
+ Name
+ Google Chrome Canary
+
+
+ Blocked Apps
+
+ com.google.Chrome.Canary
+
+ Extension Description
+ Open the link in Google Chrome Canary.
+ Extension Identifier
+ de.marcgoertz.popclip.extension.open-in-canary
+ Extension Name
+ Open in Chrome Canary
+ Version
+ 1
+
+
diff --git a/src/open-in-canary/chrome.png b/src/open-in-canary/chrome.png
new file mode 100644
index 0000000..10432d7
Binary files /dev/null and b/src/open-in-canary/chrome.png differ
diff --git a/src/open-in-canary/open-in-canary.sh b/src/open-in-canary/open-in-canary.sh
new file mode 100644
index 0000000..92abd20
--- /dev/null
+++ b/src/open-in-canary/open-in-canary.sh
@@ -0,0 +1,12 @@
+COUNT=0
+for THIS_URL in $POPCLIP_URLS
+do
+ let COUNT=COUNT+1
+ if [[ -n "$THIS_URL" ]]; then #if non-empty
+ echo "Opening [$THIS_URL]"
+ open -b com.google.Chrome.Canary "$THIS_URL"
+ fi
+ if [[ $COUNT -ge 10 ]]; then #limit to 10 so as not to go crazy
+ break
+ fi
+done