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": "InsEmailFinder - Find public email & phone of an IG account",
"version": "1.0.7",
"description": "Look for email\/number for an instagram account",
"action": {
"default_icon": ".\/assets\/icon-512.png",
"default_popup": ".\/dist\/popup\/index.html"
},
"options_ui": {
"page": ".\/dist\/options\/index.html",
"open_in_tab": true
},
"background": {
"service_worker": ".\/dist\/background\/index.mjs"
},
"icons": {
"16": "\/assets\/icon-512.png",
"48": "\/assets\/icon-512.png",
"128": "\/assets\/icon-512.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"js": [
"dist\/contentScripts\/injectbutton.global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"dist\/contentScripts\/style.css",
"assets\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}