AdCake

AdCake Extension

Co to jest AdCake?

AdCake to rozszerzenie Chrome opracowane przez https://pages.fm, a jego główną funkcją jest „AdCake Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia AdCake

Pobierz pliki rozszerzeń AdCake w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa AdCake AdCake
ID feaaodbedppfbjagfoooomohhijlnepn
Oficjalny URL https://chromewebstore.google.com/detail/adcake/feaaodbedppfbjagfoooomohhijlnepn
Opis AdCake Extension
Rozmiar pliku 41.4 KB
Liczba instalacji 3,221
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2020-12-09
Data Publikacji 2019-01-19
Deweloper https://pages.fm
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://pages.fm
Adres URL Strony Pomocy https://www.facebook.com/groups/pancake.tools/
Adres URL Strony Polityki Prywatności https://pages.fm/privacy
Obsługiwane Języki 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"
            ]
        }
    ]
}