summaryrefslogtreecommitdiff
path: root/2015_locomotivebrowser/chrome/manifest.json
diff options
context:
space:
mode:
authorjoak <joak@nospace.at>2017-01-13 15:18:08 +0100
committerjoak <joak@nospace.at>2017-01-13 15:18:08 +0100
commite955b48277bc86a41744078c032f44eeb53e38e6 (patch)
tree6b3841facbbc07697c2d7d70e84d6c7897ceb934 /2015_locomotivebrowser/chrome/manifest.json
parentea824be9f5fa9ae470db515ab3f6d3996a9cae0f (diff)
new icon mirror
Diffstat (limited to '2015_locomotivebrowser/chrome/manifest.json')
-rw-r--r--2015_locomotivebrowser/chrome/manifest.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/2015_locomotivebrowser/chrome/manifest.json b/2015_locomotivebrowser/chrome/manifest.json
new file mode 100644
index 0000000..01bbb0a
--- /dev/null
+++ b/2015_locomotivebrowser/chrome/manifest.json
@@ -0,0 +1,29 @@
+{
+ "manifest_version": 2,
+
+ "name": "Locomotive",
+ "description": "This extension is a locomotive ride in your browser!",
+ "version": "1.0",
+ "author": "joak",
+ //icon by Hans-Peter Scholz CC-BY-SA 3.0 http://commons.wikimedia.org/wiki/Category:Locomotives#mediaviewer/File:Meyer_Lok.png
+ //sound by Keith Burnett CC http://www.freesound.org/people/keithpeter/sounds/125211/
+ "permissions": ["activeTab"],
+ "browser_action": {
+ "default_icon": "icon.png",
+ "default_popup": "popup.html"
+ },
+ "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"
+ ]
+}