InsE - Instagram email finder & exporter
Scrape pubilc email and phone of instagram followers and export to csv/excel
InsE - Instagram email finder & exporter란 무엇입니까?
InsE - Instagram email finder & exporter은(는) ListMore에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape pubilc email and phone of instagram followers and export to csv/excel"입니다.
확장 프로그램 스크린샷
InsE - Instagram email finder & exporter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Export public email and phone from a Instagram Account's Followers/Following to CSV Excel This is an operational tool designed for small and medium-sized businesses. Step1: Open profile page of Instagram. Step2: Click the InsE icon, then the extension will recognize the url and open the dashboard.
확장 프로그램 기본 정보
이름 | InsE - Instagram email finder & exporter |
ID | hboikjnbkhkjmllgdcflmbcojbpklcca |
공식 URL | https://chromewebstore.google.com/detail/inse-instagram-email-find/hboikjnbkhkjmllgdcflmbcojbpklcca |
설명 | Scrape pubilc email and phone of instagram followers and export to csv/excel |
파일 크기 | 896 KB |
설치 횟수 | 736 |
현재 버전 | 4.6.13 |
최근 업데이트 | 2024-02-19 |
출시 날짜 | 2022-07-07 |
평점 | 3.33/5 총 3 개의 평점 |
개발자 | ListMore |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://listmore.notion.site/Privacy-Policy-1b8454dbdaa54b4590b3b8988b4c2e08 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "InsE - Instagram email finder & exporter", "version": "4.6.13", "description": "Scrape pubilc email and phone of instagram followers and export to csv\/excel", "action": { "default_icon": ".\/assets\/icon-128.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-16.png", "48": ".\/assets\/icon-48.png", "128": ".\/assets\/icon-128.png" }, "permissions": [ "storage", "activeTab", "cookies", "unlimitedStorage" ], "host_permissions": [ "*:\/\/*.instagram.com\/*", "*:\/\/*.listmore.info\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*?ext=E&cmd=export&uuid=*" ], "js": [ "dist\/exportPanel\/index.global.js" ] } ], "web_accessible_resources": [ { "resources": [ "dist\/exportPanel\/style.css", "assets\/*" ], "matches": [ "*:\/\/*.instagram.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |