diff options
author | joak <joak@nospace.at> | 2017-01-13 15:18:08 +0100 |
---|---|---|
committer | joak <joak@nospace.at> | 2017-01-13 15:18:08 +0100 |
commit | e955b48277bc86a41744078c032f44eeb53e38e6 (patch) | |
tree | 6b3841facbbc07697c2d7d70e84d6c7897ceb934 /2015_locomotivebrowser/firefox/manifest.json | |
parent | ea824be9f5fa9ae470db515ab3f6d3996a9cae0f (diff) |
new icon mirror
Diffstat (limited to '2015_locomotivebrowser/firefox/manifest.json')
-rw-r--r-- | 2015_locomotivebrowser/firefox/manifest.json | 28 |
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" + ] +} |