AdCake

AdCake Extension

Что такое AdCake?

AdCake - это расширение Chrome, разработанное https://pages.fm, и его основная функция - "AdCake Extension".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения AdCake

Скачайте файлы расширений AdCake в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название AdCake AdCake
ID feaaodbedppfbjagfoooomohhijlnepn
Официальный URL https://chromewebstore.google.com/detail/adcake/feaaodbedppfbjagfoooomohhijlnepn
Описание AdCake Extension
Размер файла 41.4 KB
Количество установок 3,221
Текущая Версия 1.0.6
Последнее Обновление 2020-12-09
Дата публикации 2019-01-19
Разработчик https://pages.fm
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://pages.fm
URL страницы помощи https://www.facebook.com/groups/pancake.tools/
URL страницы политики конфиденциальности https://pages.fm/privacy
Поддерживаемые языки 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"
            ]
        }
    ]
}