Copy Content to Fanvue
The extension allows you to copy your content from OnlyFans to Fanvue.
Vad är Copy Content to Fanvue?
Copy Content to Fanvue är en Chrome-tillägg utvecklad av dev, och dess huvudfunktion är "The extension allows you to copy your content from OnlyFans to Fanvue.".
Tilläggsskärmbilder
Ladda ner Copy Content to Fanvue-förlängningens CRX-fil
Ladda ner Copy Content to Fanvue-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Extensions that allows you to transfer content from one website to another Grundläggande Information om Tillägg
| Namn | |
| ID | hcebmjomonhgibmelfackhipoajjlfbj |
| Officiell webbadress | https://chromewebstore.google.com/detail/copy-content-to-fanvue/hcebmjomonhgibmelfackhipoajjlfbj |
| Beskrivning | The extension allows you to copy your content from OnlyFans to Fanvue. |
| Filstorlek | 86.02 KB |
| Antal Installationer | 837 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2022-06-08 |
| Publiceringsdatum | 2022-06-04 |
| Betyg | 1.67/5 Totalt 6 Betyg |
| Utvecklare | dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.fanvue.com |
| Hjälpsida URL | https://help.fanvue.com/en/ |
| URL till Sekretesspolicy Sidan | https://www.fanvue.com/privacy |
| Stödda Språk | 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": []
} | |