Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit 1624dd9

Browse files
committed
Release v1.1
Fix spelling in extension name ._. Update readme
1 parent 3c1c3c4 commit 1624dd9

File tree

8 files changed

+27
-17
lines changed

8 files changed

+27
-17
lines changed

README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
# Merge FB Dev Cicles by Interests
1+
# Merge Facebook Dev Circles by Interests
22

33
> A Chrome extension that filters through Facebook Dev Circles around the world to get only the interesting posts in your feed.
44
5-
## [Download the extension]('/releases/download/v1.0/Merge.FB.Dev.Cicles.by.Interests.crx')
5+
## [Download the extension]('/releases/download/v1.1/Merge.FB.Dev.Circles.by.Interests.crx')
66

77
# How to Install
88

9-
1. Download the extension (`Merge.FB.Dev.Cicles.by.Interests.crx`) from link above or from [releases page](/releases/).
10-
2. Drag and Drop downloaded file into Google Chrome's Extensions page ([chrome://extensions/](chrome://extensions/)).
9+
1. Download the extension (`Merge.Facebook.Dev.Circles.by.Interests.crx`) from link above or from [releases page](/releases/).
10+
2. Drag and Drop downloaded file into Google Chrome's Extensions page (`chrome://extensions/`).
1111
3. Install the extension by clicking Install button.
1212
4. Go to extension's options and configure.
1313

14-
1514
# Configure
1615

1716
### App Token (required)
1817

19-
Get your app token from [https://developers.facebook.com/tools/accesstoken/](https://developers.facebook.com/tools/accesstoken/). You might need to create a Facebook Developer Account and/or a app. Create an app if not exists and get the App Token (not User Token) and paste in App Token field in extension's options page.
18+
Get your app token from [https://developers.facebook.com/tools/accesstoken/](https://developers.facebook.com/tools/accesstoken/). You might need to create a Facebook Developer Account and/or a app. Create an app if not exists and get the `App Token` (not User Token) and paste in App Token field in extension's options page.
2019

2120
The App Token is needed to authenticate Facebook's Graph API requests.
2221

@@ -30,4 +29,17 @@ Enable to highlight matched keywords in posts, otherwise disable.
3029

3130
### Blacklist Groups
3231

33-
Add a group's name (and make use to autocomplete) to blacklist it (avoid showing posts from that group in your feed). You might want to blacklist a group as you might not be interested in their posts or not able to understand their language.
32+
Add a group's name (and make use to auto-complete) to blacklist it (avoid showing posts from that group in your feed). You might want to blacklist a group as you might not be interested in their posts or not able to understand their language.
33+
34+
# Contributing
35+
36+
I would love your PRs. You can contribute :
37+
38+
- by adding more keyword suggestions (edit: [/options.dev/keywords.js](/options.dev/keywords.js)).
39+
- letting me know of additions/removals of public Dev circle groups (edit: [/options.dev/keywords.js](/options.dev/keywords.js), you may use [/scrape-group-lists.js](/scrape-group-lists.js)).
40+
- Make the extension better. Fix bugs, if found. Add more features. Improve existing features.
41+
42+
## Todo
43+
44+
- More interactive feed.
45+
- Firefox add-on maybe?

TODO

Lines changed: 0 additions & 3 deletions
This file was deleted.

dist/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 2,
3-
"name": "Merge FB Dev Cicles by Interests",
3+
"name": "Merge Facebook Dev Circles by Interests",
44
"description": "A Chrome extension that filters through Facebook Dev Circles around the world to get only the interesting posts in your feed.",
55
"version": "1.0",
66
"icons":
@@ -12,7 +12,7 @@
1212
},
1313
"page_action":
1414
{
15-
"default_title": "Merge FB Dev Cicles by Interests",
15+
"default_title": "Merge Facebook Dev Circles by Interests",
1616
"default_icon": "icon32.png"
1717
},
1818
"background":

dist/options/options.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 2,
3-
"name": "Merge FB Dev Cicles by Interests",
3+
"name": "Merge Facebook Dev Circles by Interests",
44
"description": "A Chrome extension that filters through Facebook Dev Circles around the world to get only the interesting posts in your feed.",
55
"version": "1.0",
66
"icons":
@@ -12,7 +12,7 @@
1212
},
1313
"page_action":
1414
{
15-
"default_title": "Merge FB Dev Cicles by Interests",
15+
"default_title": "Merge Facebook Dev Circles by Interests",
1616
"default_icon": "icon32.png"
1717
},
1818
"background":

options.dev/ApiKeyForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ApiKeyForm extends React.Component {
3232
return (
3333
<form onSubmit={this.handleSubmit} className="apikey_form">
3434
<label htmlFor="apikey">
35-
<h3>Facebook Graph API Key (App Token) <a target="_blank" className="hint" href="https://developers.facebook.com/tools/accesstoken/" title="You may need to create Facebook developer account to get the App Token. The App Token is required to use the Facebook graph API.">?</a></h3>
35+
<h3>Facebook Graph API Key (App Token) <a target="_blank" className="hint" href="https://developers.facebook.com/tools/accesstoken/" title="You may need to create Facebook developer account to get the App Token. The App Token is required to use the Facebook graph API.">?</a> <small>(required)</small></h3>
3636
</label>
3737
<div className="form-group">
3838
<input type="text" name="apikey" id="apikey" value={this.state.value} onChange={this.handleChange} spellCheck="false" required/>

options.dev/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class App extends React.Component {
1212
render() {
1313
return (
1414
<div>
15-
<h2 className="page-title">Settings: Facebook Developer Interests</h2>
15+
<h2 className="page-title">Settings: Merge Facebook Dev Circles by Interests</h2>
1616
<ApiKeyForm/>
1717
<KeywordsFilter/>
1818
<HighlightMatches/>

options.dev/keywords.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ module.exports = [
1919
{ id: 18, name: 'unity' },
2020
{ id: 18, name: 'unity3d' },
2121
{ id: 19, name: 'vue.js' },
22+
{ id: 20, name: 'node.js' },
2223
];

0 commit comments

Comments
 (0)