Familycard
Familycard extension
Cos'è Familycard?
Familycard è un'estensione di Chrome sviluppata da https://familycard.be, e la sua funzione principale è "Familycard extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Familycard
Scarica i file di estensione Familycard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Voor de vergeetkousen onder ons die al miljonair hadden kunnen zijn, was het niet dat ze telkens hun Familycard vergaten te activeren... Installeer onze browserextensie en loop nooit meer korting mis! De browserextensie of herinneringsbalk popt automatisch op wanneer je een webshop bezoekt die bij Familycard is aangesloten. Met één klik op de knop activeer je jouw Familycard. En zo misloop je nooit meer een korting!
Informazioni di Base sull'Estensione
Nome | Familycard |
ID | ejlibkcnbaelmmgmhfklbdmklijneofi |
URL Ufficiale | https://chromewebstore.google.com/detail/familycard/ejlibkcnbaelmmgmhfklbdmklijneofi |
Descrizione | Familycard extension |
Dimensione del File | 333 KB |
Conteggio Installazioni | 4,453 |
Versione Corrente | 2.0.3 |
Ultimo Aggiornamento | 2024-02-12 |
Data di Pubblicazione | 2023-08-27 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://familycard.be |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://www.familycard.be/contact?campaign=extensionchromestore |
URL della Pagina della Politica sulla Privacy | https://www.familycard.be/privacy-policy |
Lingue Supportate | en,fr,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Familycard", "version": "2.0.3", "description": "Familycard extension", "default_locale": "nl", "action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_title": "Familycard", "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-main.js" ] }, { "matches": [ "*:\/\/www.familycard.be\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-familycard.js" ] }, { "matches": [ "*:\/\/*.google.com\/*", "*:\/\/google.com\/*", "*:\/\/*.google.be\/*", "*:\/\/google.be\/*", "*:\/\/*.google.fr\/*", "*:\/\/google.fr\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-google.js" ] }, { "matches": [ "*:\/\/*.anrdoezrs.net\/*", "*:\/\/*.commission-junction.com\/*", "*:\/\/*.dpbolvw.net\/*", "*:\/\/*.apmebf.com\/*", "*:\/\/*.jdoqocy.com\/", "*:\/\/*.kqzyfj.com\/*", "*:\/\/*.qksrv.net\/*", "*:\/\/*.tkqlhce.com\/*", "*:\/\/*.qksz.net\/*", "*:\/\/*.emjcd.com\/*", "*:\/\/*.afcyhf.com\/*", "*:\/\/*.awltovhc.com\/*", "*:\/\/*.ftjcfx.com\/*", "*:\/\/*.lduhtrp.net\/*", "*:\/\/*.tqlkg.com\/*", "*:\/\/*.awxibrm.com\/*", "*:\/\/*.cualbr.com\/*", "*:\/\/*.rnsfpw.net\/*", "*:\/\/*.vofzpwh.com\/*", "*:\/\/*.yceml.net\/*", "*:\/\/*.cj-dotomi.com\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-cj.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/*.png", "html\/*.html" ], "matches": [ "*:\/\/*\/*" ] }, { "resources": [ "chunks\/*-*.js", "content-scripts\/main.js", "content-scripts\/familycard.js", "content-scripts\/google.js", "content-scripts\/cj.js" ], "matches": [ "*:\/\/*\/*", "*:\/\/www.familycard.be\/*", "*:\/\/*.google.com\/*", "*:\/\/google.com\/*", "*:\/\/*.google.be\/*", "*:\/\/google.be\/*", "*:\/\/*.google.fr\/*", "*:\/\/google.fr\/*", "*:\/\/*.anrdoezrs.net\/*", "*:\/\/*.commission-junction.com\/*", "*:\/\/*.dpbolvw.net\/*", "*:\/\/*.apmebf.com\/*", "*:\/\/*.jdoqocy.com\/*", "*:\/\/*.kqzyfj.com\/*", "*:\/\/*.qksrv.net\/*", "*:\/\/*.tkqlhce.com\/*", "*:\/\/*.qksz.net\/*", "*:\/\/*.emjcd.com\/*", "*:\/\/*.afcyhf.com\/*", "*:\/\/*.awltovhc.com\/*", "*:\/\/*.ftjcfx.com\/*", "*:\/\/*.lduhtrp.net\/*", "*:\/\/*.tqlkg.com\/*", "*:\/\/*.awxibrm.com\/*", "*:\/\/*.cualbr.com\/*", "*:\/\/*.rnsfpw.net\/*", "*:\/\/*.vofzpwh.com\/*", "*:\/\/*.yceml.net\/*", "*:\/\/*.cj-dotomi.com\/*" ] } ], "permissions": [ "storage", "tabs", "management" ] } |