summaryrefslogtreecommitdiff
path: root/2016_mirror_browser/chrome/manifest.json
diff options
context:
space:
mode:
authorid_ed25519_bbb.git <joak@nospace.at>2016-12-19 13:59:01 +0100
committerid_ed25519_bbb.git <joak@nospace.at>2016-12-19 13:59:01 +0100
commit3c08a384d5471bca3e414091aeef9afcfb9ba668 (patch)
tree5542c856c5694b5b217ba1703e453b65b5695c06 /2016_mirror_browser/chrome/manifest.json
parentbc37ec21ad65fbd4284e0d75dc372532a33dbd7b (diff)
add lamp and mirror
Diffstat (limited to '2016_mirror_browser/chrome/manifest.json')
-rw-r--r--2016_mirror_browser/chrome/manifest.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/2016_mirror_browser/chrome/manifest.json b/2016_mirror_browser/chrome/manifest.json
new file mode 100644
index 0000000..b296a4e
--- /dev/null
+++ b/2016_mirror_browser/chrome/manifest.json
@@ -0,0 +1,23 @@
+{
+ "manifest_version": 2,
+
+ "name": "Mirror",
+ "description": "This mirror flips your online activity!",
+ "version": "1.0",
+ "author": "joak",
+ "permissions": ["activeTab"],
+ "browser_action": {
+ "default_icon": "icon.png",
+ "default_popup": "popup.html",
+ "default_title": "Flip horizontally page!"
+ },
+ "icons": {
+ "16": "icon-16.png",
+ "32": "icon-32.png",
+ "64": "icon-64.png"
+ },
+ "content_scripts": [{
+ "matches": ["<all_urls>"],
+ "css": ["mirror.css"]
+ }]
+}