Skip to content

Commit 2d5fdbc

Browse files
committed
first commit
1 parent 57ed21c commit 2d5fdbc

File tree

8 files changed

+402
-0
lines changed

8 files changed

+402
-0
lines changed

background.js

Whitespace-only changes.

manifest.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"manifest_version" : 2,
3+
"name" : "arguman",
4+
"version" : "0.1.0",
5+
"description" : "arguman.org chrome eklentisi",
6+
"author" : "Samet Aydemir",
7+
"browser_action": {
8+
"default_title" : "Arguman.org",
9+
"default_popup" : "popup/popup.html"
10+
},
11+
12+
13+
"background" : {
14+
"scripts" : ["background.js"],
15+
"persistent" : false
16+
},
17+
18+
19+
"permissions": [
20+
"http://*/"
21+
],
22+
23+
"icons": { "32": "popup/icon/icon.png"}
24+
25+
}

popup/css/popup.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
body{
2+
margin:0;
3+
padding:0;
4+
font-family: AmericanTypewriter, Georgia, serif;
5+
}
6+
7+
/* Clear */
8+
9+
.clear{
10+
clear: both;
11+
}
12+
13+
14+
/* Feeds */
15+
.feeds{
16+
padding:10px;
17+
border-bottom: 1px solid #f2f2f2;
18+
font-size: 16px;
19+
margin-top: 5px;
20+
}
21+
22+
.feeds .feeds-writer{
23+
float:left;
24+
}
25+
26+
.feeds .feeds-writer img{
27+
width: 50px;
28+
height: 50px;
29+
}
30+
31+
.feeds .feeds-text{
32+
float:left;
33+
margin-top: 8px;
34+
margin-left: 5px;
35+
}
36+
37+
.feeds .feeds-text .feeds-label{
38+
font-size: 12px;
39+
background:#FFF8B2;
40+
display: inline-block;
41+
cursor: pointer;
42+
}
43+
44+
.feeds .feeds-text .feeds-title{
45+
width: 220px;
46+
overflow: hidden;
47+
white-space: nowrap;
48+
text-overflow: ellipsis;
49+
cursor: pointer;
50+
}
51+
52+
.feeds .feeds-text .feeds-title:hover{
53+
color:#999;
54+
}
55+
56+
.feeds .feeds-writer img{
57+
border-radius: 50%;
58+
}

popup/icon/icon.png

499 Bytes
Loading

popup/js/angular-md5.min.js

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

0 commit comments

Comments
 (0)