Skip to content

Commit 0760ea0

Browse files
committed
Port extension to WebExtensions API
1 parent 65bcfeb commit 0760ea0

File tree

13 files changed

+26
-34
lines changed

13 files changed

+26
-34
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.xpi
2+
package-lock.json
23
node_modules
4+
web-ext-artifacts/
File renamed without changes.

coderstats/doc/main.md

Whitespace-only changes.

coderstats/index.js

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

coderstats/manifest.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"manifest_version": 2,
3+
"version": "2.0.0",
4+
"homepage_url": "http://coderstats.net/",
5+
"name": "CoderStats link for Github Coders",
6+
"description": "Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.",
7+
"icons": {
8+
"48": "static/logo-48x48.png",
9+
"128": "static/logo-128x128.png"
10+
},
11+
"content_scripts": [{
12+
"matches": ["https://github.com/*"],
13+
"js": ["coderstats.js"],
14+
"run_at": "document_end"
15+
}],
16+
"applications": {
17+
"gecko": {
18+
"id": "jid1-HAA0sgdoxNv9aA@jetpack",
19+
"strict_min_version": "48.0"
20+
}
21+
}
22+
}

coderstats/package.json

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

coderstats/static/logo-128x128.png

3.5 KB
Loading

coderstats/static/logo-48x48.png

1.47 KB
Loading

coderstats/static/logo-64x64.png

-2.19 KB
Binary file not shown.

coderstats/test/test-main.js

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

0 commit comments

Comments
 (0)