AdCake
AdCake Extension
Cos'è AdCake?
AdCake è un'estensione di Chrome sviluppata da https://pages.fm, e la sua funzione principale è "AdCake Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AdCake
Scarica i file di estensione AdCake 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
This extension provide background helper support to AdCake app
Features:
+ Allow user to set post_id directly on AdCake without leaving the site. Extension will collect the post lists on Facebook and display in a dropdown to let user select quickly Informazioni di Base sull'Estensione
| Nome | |
| ID | feaaodbedppfbjagfoooomohhijlnepn |
| URL Ufficiale | https://chromewebstore.google.com/detail/adcake/feaaodbedppfbjagfoooomohhijlnepn |
| Descrizione | AdCake Extension |
| Dimensione del File | 41.4 KB |
| Conteggio Installazioni | 3,221 |
| Versione Corrente | 1.0.6 |
| Ultimo Aggiornamento | 2020-12-09 |
| Data di Pubblicazione | 2019-01-19 |
| Sviluppatore | https://pages.fm |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://pages.fm |
| URL della Pagina di Aiuto | https://www.facebook.com/groups/pancake.tools/ |
| URL della Pagina della Politica sulla Privacy | https://pages.fm/privacy |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AdCake",
"description": "AdCake Extension",
"version": "1.0.6",
"icons": {
"16": "cc_favicon.png",
"128": "cc_favicon.png"
},
"page_action": {
"default_icon": "cc_favicon.png"
},
"background": {
"scripts": [
".\/dist\/background-bundle.js"
],
"persistent": true
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"*:\/\/www.facebook.com\/*",
"*:\/\/m.facebook.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/adcake.io\/*",
"https:\/\/staging.ad.pages.fm\/*",
"https:\/\/localhost:6600\/*"
],
"js": [
".\/dist\/content-bundle.js"
]
}
]
} | |