-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
…jayan/web-extension-starter.git:extension
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Sample WebExtension", | ||
"version": "1.0.0", | ||
"icons": { | ||
"16": "assets/icons/favicon-16.png", | ||
"32": "assets/icons/favicon-32.png", | ||
"48": "assets/icons/favicon-48.png", | ||
"128": "assets/icons/favicon-128.png" | ||
}, | ||
"description": "Sample description", | ||
"homepage_url": "https://github.com/abhijithvijayan/web-extension-starter", | ||
"short_name": "Sample Name", | ||
"permissions": [ | ||
"tabs", | ||
"storage", | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", | ||
"author": "abhijithvijayan", | ||
"minimum_chrome_version": "49", | ||
"browser_action": { | ||
"default_popup": "popup.html", | ||
"default_icon": { | ||
"16": "assets/icons/favicon-16.png", | ||
"32": "assets/icons/favicon-32.png", | ||
"48": "assets/icons/favicon-48.png", | ||
"128": "assets/icons/favicon-128.png" | ||
}, | ||
"default_title": "tiny title", | ||
"chrome_style": false | ||
}, | ||
"options_page": "options.html", | ||
"options_ui": { | ||
"page": "options.html", | ||
"open_in_tab": true, | ||
"chrome_style": false | ||
}, | ||
"background": { | ||
"scripts": [ | ||
"js/background.bundle.js" | ||
], | ||
"persistent": false | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"js": [ | ||
"js/contentScript.bundle.js" | ||
] | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Options</title> | ||
<link rel="stylesheet" href="css/options.css" /> | ||
</head> | ||
|
||
<body><script type="text/javascript" src="js/options.bundle.js"></script></body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Popup</title> | ||
<link rel="stylesheet" href="css/popup.css" /> | ||
</head> | ||
|
||
<body><script type="text/javascript" src="js/popup.bundle.js"></script></body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.