Honest Marketer
Detect shady marketing practices on any website.
What is Honest Marketer?
Honest Marketer is a Chrome extension developed by https://honestmarketer.com, and its main feature is "Detect shady marketing practices on any website.".
Extension Screenshots
Download Honest Marketer Extension CRX File
Download Honest Marketer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | hgpammddhocfffkojmkifanccpaenhie |
Official URL | https://chromewebstore.google.com/detail/honest-marketer/hgpammddhocfffkojmkifanccpaenhie |
Description | Detect shady marketing practices on any website. |
File Size | 16.39 KB |
Installation Count | 15 |
Current Version | 0.0.2 |
Last Updated | 2019-09-07 |
Publish Date | 2019-09-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://honestmarketer.com |
[email protected] | |
Payment Type | free |
Extension Website | https://honestmarketer.com |
Help Page URL | https://help.fomo.com |
Privacy Policy Page URL | https://fomo.com/privacy |
Supported Languages | 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" ] } |