Skip to content

Commit 951f9d1

Browse files
authored
Merge pull request #4 from namila007/master
toolbar addon
2 parents 7a1c0c2 + 2de88f3 commit 951f9d1

4 files changed

Lines changed: 30 additions & 0 deletions

File tree

icons/addon.png

1.95 KB
Loading

icons/toolbar.png

1.01 KB
Loading

manifest.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
3+
"description": "Eazy access for your StackOverflow account",
4+
"manifest_version": 2,
5+
"name": "StackZilla",
6+
"version": "1.0",
7+
"homepage_url": "https://github.com/namila007/StackZilla",
8+
"icons": {
9+
"64": "icons/addon.png"
10+
},
11+
"permissions": [
12+
"activeTab"
13+
],
14+
"browser_action": {
15+
"default_icon": "icons/toolbar.png",
16+
"default_title": "StackZilla",
17+
"default_popup": "popup/index.html"
18+
},
19+
20+
"content_scripts": [
21+
{
22+
"matches": ["<all_urls>"],
23+
"js": ["stackzilla.js"]
24+
}
25+
]
26+
27+
}

popup/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<html >
2+
Hello
3+
</html>

0 commit comments

Comments
 (0)