Hi all,
I am creating Chrome Extension. I am facing problem in GCM Message recieving. If i am online than message deliver instantly. But as soon as i went offline and opens my chrome again. I do not get message instantly. SomeTimes It takes even more than an hour to recieve message. When i use
|
{ |
| "name": "GCM Notifications", |
| "description": "Chrome platform app.", |
| "manifest_version": 2, |
| "version": "0.1", |
| "app": { |
| "background": { |
| "scripts": ["background.js"] |
| } |
| }, |
| "permissions": ["gcm", "storage", "notifications"], |
| "icons": { "128": "gcm_128.png" } |
| } |
|
|
|
|
it works perfect But as soon as i write it like
{ |
| "name": "GCM Notifications", |
| "description": "Chrome platform app.", |
| "manifest_version": 2, |
| "version": "0.1", |
|
|
| "background": { |
| "scripts": ["background.js"] |
| }, |
| |
| "permissions": ["gcm", "storage", "notifications"], |
| "icons": { "128": "gcm_128.png" } |
| } |
it runs late.. Please tell me how to come out of this problem.