From bf4e4e7dbd71d7403823ac6e0eaba5f5df939fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=B3=E4=B8=9C=E5=8E=9F=20LIU=20Dongyuan?= Date: Fri, 18 Mar 2016 00:02:54 -0700 Subject: [PATCH] [Close #5] Add GitHub Canned Responses --- README.md | 1 + data.json | 7 +++++++ gen_readme.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98cfaa6..29400b3 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ A curated list of awesome browser extensions for GitHub. Inspired by [awesome-py * [ZenHub](https://www.zenhub.io) Support Chrome - Project management suite that works natively within GitHub. * [Notifier for GitHub](https://github.com/sindresorhus/notifier-for-github-chrome) Support ChromeSupport FirefoxSupport OperaSupport Safari - Displays your GitHub notifications unread count on toolbar. * [LGTM](https://chrome.google.com/webstore/detail/lgtm/ihckpnhmmfhihijdjnnjfjogoajgdklf) Support Chrome - Click the icon on browser and an interesting LGTM will be copied to your clipboard as markdown format. +* [GitHub Canned Responses](https://github.com/notwaldorf/github-canned-responses) Support ChromeSupport Firefox - Adds a little “canned response” button inside the comment editing view, that allows you to filter through existing canned responses and add them to the comment. ## View Enhancement diff --git a/data.json b/data.json index d0ad093..21320db 100644 --- a/data.json +++ b/data.json @@ -29,6 +29,13 @@ "url": "https://chrome.google.com/webstore/detail/lgtm/ihckpnhmmfhihijdjnnjfjogoajgdklf", "browsers": ["Chrome"], "support_enterprise": true + }, + { + "name": "GitHub Canned Responses", + "description": "Adds a little “canned response” button inside the comment editing view, that allows you to filter through existing canned responses and add them to the comment.", + "url": "https://github.com/notwaldorf/github-canned-responses", + "browsers": ["Chrome", "Firefox"], + "support_enterprise": false } ] }, diff --git a/gen_readme.py b/gen_readme.py index b5bee7c..738d8b8 100755 --- a/gen_readme.py +++ b/gen_readme.py @@ -13,4 +13,4 @@ if __name__ == "__main__": template = env.get_template("README.template.md") with open("README.md", "w") as f: - f.write(template.render(data=data)) + f.write(template.render(data=data).encode('utf8'))