Translate by Google

Translate by Google

G-Translate support more than 100 languages. Right click and translate your selected text.

Merlin
Additional files are visible only to premium users

manifest.json


{
   "background": {
      "scripts": [ "js/background.js" ]
   },
   "browser_action": {
      "default_icon": {
         "32": "icons/icon32.png",
         "64": "icons/icon64.png"
      },
      "default_popup": "popup.html",
      "default_title": "__MSG_name__"
   },
   "default_locale": "en",
   "description": "__MSG_description__",
   "icons": {
      "128": "icons/icon128.png",
      "16": "icons/icon16.png",
      "256": "icons/icon256.png",
      "32": "icons/icon32.png",
      "64": "icons/icon64.png"
   },
   // "applications":{
   // 	"gecko":{
   // 		"id":"{70cc497a-9ecf-4a42-8891-b69bedcc88d5}"
   // 	}
   // },
   "content_scripts":[
      {
         "js":[           
   			"js/cs.js"
         ],
         "matches":[
            "http://*/*",
            "https://*/*"
         ],
         "all_frames":true,
         "run_at":"document_end"
      },
	  {
		  "js":[
	     	"js/hide.js"
	     ],
	     "matches":[
	        "https://translate.google.com/*","https://translate.google.cn/*"
	     ],
	     "all_frames":true,
	     "run_at":"document_start"
	  }
   ],
   "manifest_version": 2,
   "name": "__MSG_name__",
   "options_ui": {	   
	   "open_in_tab":true,
       "page": "popup.html",
	   "chrome_style": true
     },
   "permissions": [ "contextMenus", "storage", "webRequestBlocking", "webRequest", "http://*/*", "https://*/*", "notifications" ],
   "short_name": "__MSG_short_name__",
   "version": "1.2.6"
}