Power Tools

Power Tools for Podio is a bundle of 4 tools that will make your Podio life much easier. These 4 tools are included in this…

Что такое Power Tools?

Power Tools - это расширение Chrome, разработанное https://momentumtools.io, и его основная функция - "Power Tools for Podio is a bundle of 4 tools that will make your Podio life much easier. These 4 tools are included in this…".

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

screenshot

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

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

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

                        Power Tools for Podio is a bundle of 4 tools that will make your Podio life much easier.

These 4 tools are included in this extension:

- Bulk Edit: Update multiple Podio items directly from your table overview.
- Power Export: Combine your linked Podio apps in one export. Drag and drop the columns you want to export, save your report and click export.
- Power Sync: Sync your Podio app to a Google Sheet.
- Power filters: Filter on fields from related Podio apps.                    

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

Название Power Tools Power Tools
ID poiiimgigdekjmhpohdceabjlocjenfl
Официальный URL https://chromewebstore.google.com/detail/power-tools/poiiimgigdekjmhpohdceabjlocjenfl
Описание Power Tools for Podio is a bundle of 4 tools that will make your Podio life much easier. These 4 tools are included in this…
Размер файла 322 KB
Количество установок 2,820
Текущая Версия 2.0.5
Последнее Обновление 2023-08-21
Дата публикации 2020-06-29
Рейтинг 4.67/5 Всего 21 оценок
Разработчик https://momentumtools.io
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://momentumtools.io/podio-bulk-edit-export?utm_source=chrome_store&utm_medium=web&utm_campaign=chrome_store&utm_term=chrome_store
URL страницы помощи https://support.momentumtools.io/container/show/28054
URL страницы политики конфиденциальности https://momentumtools.io/hc/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Power Tools",
    "version": "2.0.5",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/pop-up\/index.html",
        "default_icon": {
            "128": "assets\/logo.png"
        },
        "default_title": "Power Tools"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.podio.com\/*"
            ],
            "js": [
                "content-scripts\/main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "tabs"
    ]
}