diff --git a/extension/_locales/en/messages.json b/extension/_locales/en/messages.json index 0df8610..04b49ea 100644 --- a/extension/_locales/en/messages.json +++ b/extension/_locales/en/messages.json @@ -3,6 +3,10 @@ "message": "Google Chrome to Phone Extension", "description": "Name of the application" }, + "app_name_short": { + "message": "Chrome to Phone", + "description": "Short name of the application" + }, "app_desc": { "message": "Google Chrome to Phone Extension enables you to send links and other information from Chrome to your Android device.", "description": "Description of the application." diff --git a/extension/_locales/fr/messages.json b/extension/_locales/fr/messages.json index a5c1c85..0c3aa18 100644 --- a/extension/_locales/fr/messages.json +++ b/extension/_locales/fr/messages.json @@ -3,6 +3,10 @@ "message": "Extension Chrome to Phone par Google", "description": "Name of the application" }, + "app_name_short": { + "message": "Chrome to Phone", + "description": "Short name of the application" + }, "app_desc": { "message": "L’extension Chrome to Phone par Google vous permet d’envoyer des liens et autres informations depuis Chrome vers votre appareil Android.", "description": "Description of the application." diff --git a/extension/background.html b/extension/background.html new file mode 100644 index 0000000..fe39855 --- /dev/null +++ b/extension/background.html @@ -0,0 +1,45 @@ +/* + * Copyright 2010 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + diff --git a/extension/help.html b/extension/help.html index 5aa12db..2be60cc 100644 --- a/extension/help.html +++ b/extension/help.html @@ -48,7 +48,13 @@ body,td {

- + diff --git a/extension/icon_16.png b/extension/icon_16.png new file mode 100644 index 0000000..299c0a4 Binary files /dev/null and b/extension/icon_16.png differ diff --git a/extension/manifest.json b/extension/manifest.json index 4f0d161..3433e7c 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -1,17 +1,21 @@ { "name": "__MSG_app_name__", "description": "__MSG_app_desc__", - "version": "2.0.0", + "version": "2.1.0", "default_locale": "en", - "icons": { "128": "icon_128.png" }, + "icons": { + "16": "icon_16.png", + "128": "icon_128.png" + }, "options_page": "help.html", "browser_action": { "default_title": "__MSG_app_name__", "default_icon": "icon_19.png", "default_popup": "popup.html" }, + "background_page": "background.html", "permissions": [ - "tabs", "http://*/*", "https://*/*" + "contextMenus", "tabs", "http://*/*", "https://*/*" ], "content_scripts": [ { diff --git a/extension/popup.html b/extension/popup.html index b346f87..8097619 100644 --- a/extension/popup.html +++ b/extension/popup.html @@ -30,17 +30,8 @@ td { } - +