From bf36b79263ace940bf146939da650c6d3c9c1e5d Mon Sep 17 00:00:00 2001 From: "karol@jagiello.it" <1cyfraikilkaliter> Date: Wed, 26 Jul 2017 22:38:57 +0200 Subject: [PATCH] license and manifests --- LICENSE | 18 ++++++++++++ manifest_firefox/manifest.json | 52 ++++++++++++++++++++++++++++++++++ manifest_vivaldi/manifest.json | 43 ++++++++++++++++++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 LICENSE create mode 100644 manifest_firefox/manifest.json create mode 100644 manifest_vivaldi/manifest.json diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4c7be5e --- /dev/null +++ b/LICENSE @@ -0,0 +1,18 @@ +Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) + +You are free to: + +Share — copy and redistribute the material in any medium or format +The licensor cannot revoke these freedoms as long as you follow the license terms. +Under the following terms: + +Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. + You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. +NonCommercial — You may not use the material for commercial purposes. +NoDerivatives — If you remix, transform, or build upon the material, you may not distribute the modified material. +No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. + +Notices: +You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation. +No warranties are given. The license may not give you all of the permissions necessary for your intended use. +For example, other rights such as publicity, privacy, or moral rights may limit how you use the material. \ No newline at end of file diff --git a/manifest_firefox/manifest.json b/manifest_firefox/manifest.json new file mode 100644 index 0000000..75ff87d --- /dev/null +++ b/manifest_firefox/manifest.json @@ -0,0 +1,52 @@ +{ + "manifest_version": 2, + "default_locale": "en", + "background": { + "scripts": [ "background.js" ], + "persistent": true + }, + "name": "Tree Tabs", + "description": "__MSG_extDesc__", + "icons": { + "128": "icons/128.png", + "48": "icons/48.png", + "38": "icons/24.png", + "19": "icons/16.png", + "16": "icons/16.png" + }, + "permissions": [ "tabs", "sessions", "" ], + "commands": { + "goto_tab_above": { + "suggested_key": { + "default": "Alt+1" + }, + "description": "Go to tab above" + }, + "goto_tab_below": { + "suggested_key": { + "default": "Alt+2" + }, + "description": "Go to tab below" + } + }, + "sidebar_action": { + "default_icon": { + "19": "icons/16.png", + "38": "icons/38.png" + }, + "default_panel": "sidebar.html", + "default_title": "Tree Tabs" + }, + "options_page": "options.html", + "applications": { + "gecko": { + "id": "TreeTabs@jagiello.it", + "strict_min_version": "54.0" + } + }, + "options_ui": { + "page": "options.html", + "open_in_tab":true + }, + "version": "0.0.16" +} \ No newline at end of file diff --git a/manifest_vivaldi/manifest.json b/manifest_vivaldi/manifest.json new file mode 100644 index 0000000..f833a5b --- /dev/null +++ b/manifest_vivaldi/manifest.json @@ -0,0 +1,43 @@ +{ + "manifest_version": 2, + "default_locale": "en", + "background": { + "scripts": [ "background.js" ], + "persistent": true + }, + "name": "Tree Tabs", + "description": "__MSG_extDesc__", + "icons": { + "128": "icons/128.png", + "48": "icons/48.png", + "38": "icons/24.png", + "19": "icons/16.png", + "16": "icons/16.png" + }, + "permissions": [ "tabs", "sessions", "chrome://favicon/" ], + + "sidebar_action": { + "default_icon": { + "19": "icons/16.png", + "38": "icons/38.png" + }, + "default_panel": "sidebar.html", + "default_title": "Tree Tabs" + }, + "commands": { + "goto_tab_above": { + "suggested_key": { + "default": "Alt+1" + }, + "description": "Go to tab above" + }, + "goto_tab_below": { + "suggested_key": { + "default": "Alt+2" + }, + "description": "Go to tab below" + } + }, + "options_page": "options.html", + "version": "0.0.16" +}