Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 05aa102

Browse files
committed
first commit
0 parents  commit 05aa102

11 files changed

+171
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/*
2+
*.zip
3+
promo_small.png

LICENSE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Copyright (C) 2012 by Ramiro Gómez (http://www.ramiro.org/)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8+

Screenshot_Coderstats_yaph.png

80.3 KB
Loading

Screenshot_Github_Coderstats_yaph.png

157 KB
Loading

coderstats/README

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
DESCRIPTION
2+
The Coderstats link for Github Chrome extension displays a link to the Coderstats page for the currently display user profile page on http://github.com.

coderstats/coderstats.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
var url='http://coderstats.geeksta.net/coder/'+$('span[itemprop="nickname"]').text();$('.page-profile .vcard').append('<dl><dt>Coderstats</dt><dd><a href="'+url+'">'+url+'</a></dd></dl>');
2+

coderstats/logo-128x128.png

3.5 KB
Loading

coderstats/logo-48x48.png

1.47 KB
Loading

coderstats/manifest.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "Coderstats link for Github",
3+
"version": "1.1",
4+
"description": "Display a link to the Coderstats page for the currently displayed user on github.com.",
5+
"icons":
6+
{
7+
"48": "logo-48x48.png",
8+
"128": "logo-128x128.png"
9+
},
10+
"content_scripts": [
11+
{
12+
"matches": ["https://github.com/*"],
13+
"js": ["vendor/jquery-1.7.1.min.js","coderstats.js"],
14+
"run_at": "document_end"
15+
}
16+
]
17+
}

coderstats/vendor/jquery-1.7.1.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

promo_small.svg

Lines changed: 135 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)