Honest Marketer
Detect shady marketing practices on any website.
什么是Honest Marketer?
Honest Marketer是由https://honestmarketer.com开发的Chrome扩展程序,该扩展的主要功能是“Detect shady marketing practices on any website.”。
扩展截图
下载Honest Marketer扩展crx文件
下载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" ] } |