AdCake
AdCake Extension
Vad är AdCake?
AdCake är en Chrome-tillägg utvecklad av https://pages.fm, och dess huvudfunktion är "AdCake Extension".
Tilläggsskärmbilder
Ladda ner AdCake-förlängningens CRX-fil
Ladda ner AdCake-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
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 Grundläggande Information om Tillägg
| Namn | |
| ID | feaaodbedppfbjagfoooomohhijlnepn |
| Officiell webbadress | https://chromewebstore.google.com/detail/adcake/feaaodbedppfbjagfoooomohhijlnepn |
| Beskrivning | AdCake Extension |
| Filstorlek | 41.4 KB |
| Antal Installationer | 3,221 |
| Aktuell Version | 1.0.6 |
| Senast Uppdaterad | 2020-12-09 |
| Publiceringsdatum | 2019-01-19 |
| Utvecklare | https://pages.fm |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://pages.fm |
| Hjälpsida URL | https://www.facebook.com/groups/pancake.tools/ |
| URL till Sekretesspolicy Sidan | https://pages.fm/privacy |
| Stödda Språk | 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"
]
}
]
} | |