We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a1c0c2 + 2de88f3 commit 951f9d1Copy full SHA for 951f9d1
4 files changed
icons/addon.png
1.95 KB
icons/toolbar.png
1.01 KB
manifest.json
@@ -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
@@ -0,0 +1,3 @@
+<html >
+ Hello
+</html>
0 commit comments