Browse Source

[Close #5] Add GitHub Canned Responses

master
柳东原 LIU Dongyuan 9 years ago
parent
commit
bf4e4e7dbd
  1. 1
      README.md
  2. 7
      data.json
  3. 2
      gen_readme.py

1
README.md

@ -8,6 +8,7 @@ A curated list of awesome browser extensions for GitHub. Inspired by [awesome-py
* [ZenHub](https://www.zenhub.io) <a href="https://www.zenhub.io"><img alt="Support Chrome" src="icons/Chrome.png" width="16"></a> - Project management suite that works natively within GitHub.
* [Notifier for GitHub](https://github.com/sindresorhus/notifier-for-github-chrome) <a href="https://github.com/sindresorhus/notifier-for-github-chrome"><img alt="Support Chrome" src="icons/Chrome.png" width="16"><img alt="Support Firefox" src="icons/Firefox.png" width="16"><img alt="Support Opera" src="icons/Opera.png" width="16"><img alt="Support Safari" src="icons/Safari.png" width="16"></a> - Displays your GitHub notifications unread count on toolbar.
* [LGTM](https://chrome.google.com/webstore/detail/lgtm/ihckpnhmmfhihijdjnnjfjogoajgdklf) <a href="https://chrome.google.com/webstore/detail/lgtm/ihckpnhmmfhihijdjnnjfjogoajgdklf"><img alt="Support Chrome" src="icons/Chrome.png" width="16"></a> - 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) <a href="https://github.com/notwaldorf/github-canned-responses"><img alt="Support Chrome" src="icons/Chrome.png" width="16"><img alt="Support Firefox" src="icons/Firefox.png" width="16"></a> - 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

7
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
}
]
},

2
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'))

Loading…
Cancel
Save