Copy Content to Fanvue
The extension allows you to copy your content from OnlyFans to Fanvue.
Copy Content to Fanvue란 무엇입니까?
Copy Content to Fanvue은(는) dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension allows you to copy your content from OnlyFans to Fanvue."입니다.
확장 프로그램 스크린샷
Copy Content to Fanvue 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extensions that allows you to transfer content from one website to another
확장 프로그램 기본 정보
이름 | Copy Content to Fanvue |
ID | hcebmjomonhgibmelfackhipoajjlfbj |
공식 URL | https://chromewebstore.google.com/detail/copy-content-to-fanvue/hcebmjomonhgibmelfackhipoajjlfbj |
설명 | The extension allows you to copy your content from OnlyFans to Fanvue. |
파일 크기 | 86.02 KB |
설치 횟수 | 837 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2022-06-08 |
출시 날짜 | 2022-06-04 |
평점 | 1.67/5 총 6 개의 평점 |
개발자 | dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.fanvue.com |
도움말 페이지 URL | https://help.fanvue.com/en/ |
개인정보 보호 정책 페이지 URL | https://www.fanvue.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy Content to Fanvue", "version": "0.0.1", "description": "The extension allows you to copy your content from OnlyFans to Fanvue.", "homepage_url": "https:\/\/fanvue.com", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png", "512": "icon-512.png" }, "permissions": [ "cookies", "scripting", "tabs" ], "host_permissions": [ "*:\/\/*.onlyfans.com\/*", "*:\/\/onlyfans.com\/*" ], "background": { "service_worker": "background.js", "matches": [ "https:\/\/*.fanvue.com\/*", "https:\/\/fanvue.com\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.fanvue.com\/*", "https:\/\/fanvue.com\/*" ], "js": [ "content.js" ] } ], "action": [] } |