Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Omegle - OmeTV IP locator",
"description": "Trace omegle video chat ip location. IP address of VPN user might not be located.",
"version": "3.4.3",
"action": {
"default_icon": "browser_action_icon.png",
"default_title": "Omegle IP locator"
},
"icons": {
"48": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"webNavigation",
"scripting"
],
"host_permissions": [
"https:\/\/iplocation.com\/*",
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.omegle.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"script.js",
"myscript.js"
],
"matches": [
"https:\/\/*\/*"
]
}
]
}