Penny+
Get ready to fall in love with Penny+, a browser extension that helps you prospect on Facebook, Instagram, and LinkedIn.
Penny+란 무엇입니까?
Penny+은(는) https://pennyapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get ready to fall in love with Penny+, a browser extension that helps you prospect on Facebook, Instagram, and LinkedIn."입니다.
확장 프로그램 스크린샷
Penny+ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Easily connect with new people and act on their needs, all through social media.
- Create time to work with Penny+ every week to bring in new connections.
- Add & update contacts, schedule tasks, and never lose track!
Penny+ for Chrome allows you to:
Add Contacts: Bring contacts from Instagram, Facebook, and LinkedIn into Penny as you browse.
Update Contacts: Add a social media profile to your existing contacts or update their information from your social media feed.
Schedule Tasks: Schedule reach outs and follow ups from your social media account.
Get Started
1. Log in to your Penny account
2. Download the Browser Extension. ⬇️
3. Open your existing social media account.
4. A Penny icon will appear on your social media feed. 확장 프로그램 기본 정보
| 이름 | |
| ID | lbimaakgddhmngbndebgpfbjbjppebpg |
| 공식 URL | https://chromewebstore.google.com/detail/penny+/lbimaakgddhmngbndebgpfbjbjppebpg |
| 설명 | Get ready to fall in love with Penny+, a browser extension that helps you prospect on Facebook, Instagram, and LinkedIn. |
| 파일 크기 | 1.3 MB |
| 설치 횟수 | 7,398 |
| 현재 버전 | 3.1.1 |
| 최근 업데이트 | 2024-01-07 |
| 출시 날짜 | 2020-05-11 |
| 평점 | 4.57/5 총 14 개의 평점 |
| 개발자 | https://pennyapp.com |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://pennyapp.com |
| 도움말 페이지 URL | https://help.pennyapp.com |
| 개인정보 보호 정책 페이지 URL | https://pennyapp.com/privacy-policy.html |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Get ready to fall in love with Penny+, a browser extension that helps you prospect on Facebook, Instagram, and LinkedIn.",
"version": "3.1.1",
"manifest_version": 3,
"name": "Penny+",
"icons": {
"128": "img\/icon-128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self' http:\/\/localhost:5555 https:\/\/*.pennyapp.com;",
"sandbox": "sandbox allow-scripts; script-src 'self' http:\/\/localhost:5555 https:\/\/*.pennyapp.com; frame-src 'self' http:\/\/localhost:5555 https:\/\/*.pennyapp.com;"
},
"sandbox": {
"pages": [
"background.html"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*.facebook.com\/*",
"https:\/\/*.facebook.com\/*"
],
"js": [
"facebook.bundle.js"
]
},
{
"matches": [
"http:\/\/*.instagram.com\/*",
"https:\/\/*.instagram.com\/*"
],
"js": [
"instagram.bundle.js"
]
},
{
"matches": [
"http:\/\/*.linkedin.com\/*",
"https:\/\/*.linkedin.com\/*"
],
"js": [
"linkedin.bundle.js"
]
},
{
"matches": [
"http:\/\/localhost:5555\/*"
],
"js": [
"penny.bundle.js"
]
},
{
"matches": [
"https:\/\/staging.pennyapp.com\/*"
],
"js": [
"penny.bundle.js"
]
},
{
"matches": [
"https:\/\/qa.pennyapp.com\/*"
],
"js": [
"penny.bundle.js"
]
},
{
"matches": [
"https:\/\/web.pennyapp.com\/*"
],
"js": [
"penny.bundle.js"
]
}
],
"permissions": [
"storage",
"notifications"
],
"host_permissions": [
"https:\/\/*.facebook.com\/*",
"https:\/\/*.instagram.com\/*",
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.pennyapp.com\/*",
"http:\/\/*.localhost:5555\/*"
],
"web_accessible_resources": [
{
"resources": [
"logo_full_colour.png",
"penny-circle-icon.png",
"img\/white-logo-128.png",
"img\/penny-plus-preview.png"
],
"matches": [
"https:\/\/*.facebook.com\/*",
"https:\/\/*.instagram.com\/*",
"https:\/\/*.linkedin.com\/*",
"http:\/\/*.pennyapp.com\/*",
"https:\/\/*.pennyapp.com\/*",
"http:\/\/localhost:5555\/*"
]
}
]
} | |