-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
fa41596
commit 519d963
Showing
12 changed files
with
3,178 additions
and
684 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
{ | ||
|
||
|
||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "Online Monitor", | ||
"description": "Online Monitor @http://github.com/rizwansoaib", | ||
"version": "2.7", | ||
"version": "2.8", | ||
"author": "Rizwan Ahmad", | ||
|
||
|
||
|
||
"action": { | ||
"default_title": "Start WhatsApp Online Monitor", | ||
"default_popup": "popup.html" | ||
}, | ||
|
||
|
||
"icons": { | ||
|
||
"64": "images/icons/64.png", | ||
"128": "images/icons/128.png" | ||
}, | ||
|
||
"web_accessible_resources": [ | ||
"*.js", | ||
"*.mp3" | ||
|
||
], | ||
"web_accessible_resources": [{ | ||
"resources": ["*.js","*.mp3"], | ||
"matches": ["<all_urls>"] | ||
}], | ||
|
||
"content_scripts": [ | ||
{ | ||
"matches": ["https://web.whatsapp.com/*"], | ||
"js": ["main.js"], | ||
"run_at": "document_start" | ||
"js": ["start.js"], | ||
"run_at": "document_end" | ||
} | ||
], | ||
|
||
"permissions": [ | ||
"scripting", | ||
"storage", | ||
"activeTab" | ||
], | ||
|
||
|
||
"host_permissions": [ | ||
"https://web.whatsapp.com/*","https://notify.run/*","https://wpmonitor.tech/*" | ||
] | ||
|
||
|
||
|
||
"permissions": [ | ||
"activeTab","storage","https://web.whatsapp.com/*","https://notify.run/*","https://whatsappanalysis.in/*" | ||
], | ||
|
||
|
||
|
||
"browser_action": { | ||
"default_popup": "popup.html" | ||
|
||
} | ||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.