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

Commit f5c57ba

Browse files
committed
Add more keywords
Make it stop looking when no more posts Add .crx extension Add icons Support Keyword match with or without . (eg. node.js == nodejs) Limit maximum concurrent requests (not total success) Update .gitignore
1 parent c382d99 commit f5c57ba

19 files changed

+95
-28
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
node_modules/
22
package-lock.json
3+
key.pem
4+
*.crx

contentscript.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ function asyncParallel(tasks, cb) {
4949
function getAccessToken(callback) {
5050
chrome.storage.sync.get('apikey', (res) => {
5151
if (!res.apikey) {
52-
alert('API key not set.');
53-
return callback('API key not set.')
52+
return callback('API key not set. Please set the App Token in extension\'s settings');
5453
};
5554
callback(null, res.apikey);
5655
});

dist/contentscript.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.

dist/icon128.png

19.4 KB
Loading

dist/icon16.png

815 Bytes
Loading

dist/icon32.png

2.19 KB
Loading

dist/icon48.png

4.69 KB
Loading

dist/inject.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.

dist/manifest.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
"name": "Merge FB Dev Cicles 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",
6+
"icons":
7+
{
8+
"16": "icon16.png",
9+
"32": "icon32.png",
10+
"48": "icon48.png",
11+
"128": "icon128.png"
12+
},
613
"page_action":
714
{
8-
"default_title": "Merge FB Dev Cicles by Interests"
15+
"default_title": "Merge FB Dev Cicles by Interests",
16+
"default_icon": "icon32.png"
917
},
1018
"background":
1119
{

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.

0 commit comments

Comments
 (0)