Honest Marketer
Detect shady marketing practices on any website.
Что такое Honest Marketer?
Honest Marketer - это расширение Chrome, разработанное https://honestmarketer.com, и его основная функция - "Detect shady marketing practices on any website.".
Снимки экрана расширения
Скачать файл CRX расширения Honest Marketer
Скачайте файлы расширений Honest Marketer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is inspired by a series of free guides at honestmarketer.com/guides about how to do digital marketing more honestly. Too often, online sellers bend the truth about their product or service in order to increase sales (short term), while ultimately damaging customer relationships and trust in the long term. Adding this free extension to your browser will give you "integrity superpowers" on every website you visit. It does this by highlighting hyperbolic, alarmist marketing tactics and tools so you can make better buying decisions. Also, we don't track you.
Основная информация о расширении
Название | |
ID | hgpammddhocfffkojmkifanccpaenhie |
Официальный URL | https://chromewebstore.google.com/detail/honest-marketer/hgpammddhocfffkojmkifanccpaenhie |
Описание | Detect shady marketing practices on any website. |
Размер файла | 16.39 KB |
Количество установок | 15 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2019-09-07 |
Дата публикации | 2019-09-03 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://honestmarketer.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://honestmarketer.com |
URL страницы помощи | https://help.fomo.com |
URL страницы политики конфиденциальности | https://fomo.com/privacy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Honest Marketer", "short_name": "Honest Marketer", "description": "Detect shady marketing practices on any website.", "browser_action": { "default_icon": "images\/hm-128.png" }, "version": "0.0.2", "icons": { "16": "images\/hm-16.png", "48": "images\/hm-48.png", "128": "images\/hm-128.png" }, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "js\/icon.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/amazon.com\/*", "*:\/\/medium.com\/*", "*:\/\/trello.com\/b\/*", "*:\/\/hangouts.google.com\/*", "*:\/\/mail.google.com\/*", "*:\/\/instagram.com\/*", "*:\/\/facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/stackoverflow.com\/*" ], "js": [ "js\/variables.js", "js\/styles.js", "js\/functions.js", "js\/actions.js" ] } ], "web_accessible_resources": [ "images\/*.png" ] } |