summaryrefslogtreecommitdiff
path: root/2015_locomotivebrowser/firefox/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to '2015_locomotivebrowser/firefox/manifest.json')
-rw-r--r--2015_locomotivebrowser/firefox/manifest.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/2015_locomotivebrowser/firefox/manifest.json b/2015_locomotivebrowser/firefox/manifest.json
new file mode 100644
index 0000000..07cbaa3
--- /dev/null
+++ b/2015_locomotivebrowser/firefox/manifest.json
@@ -0,0 +1,28 @@
+{
+ "manifest_version": 2,
+
+ "name": "Locomotive",
+ "description": "This extension is a locomotive ride in your browser!",
+ "version": "1.0",
+ "author": "joak",
+ "permissions": ["activeTab"],
+ "browser_action": {
+ "default_icon": "icon.png",
+ "default_popup": "popup.html",
+ "default_title": "Flip horizontally page!",
+ "browser_style": false
+ },
+ "icons": {
+ "48": "icon48.png",
+ "128":"icon.png"
+ },
+ "content_scripts": [{
+ "matches": ["<all_urls>"],
+ "js": ["script.js", "jquery.js"]
+ }],
+ "web_accessible_resources": [
+ "animationlocomotive.css",
+ "start.mp3",
+ "sound.mp3"
+ ]
+}