Harbor Freight Coupons

Automatically find and display harbor freight coupons on their website from hfqpdb.com

O que é Harbor Freight Coupons?

Harbor Freight Coupons é uma extensão do Chrome desenvolvida por sclem, e sua principal característica é "Automatically find and display harbor freight coupons on their website from hfqpdb.com".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Harbor Freight Coupons

Baixe arquivos de extensão Harbor Freight Coupons no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Never pay list price at harbor freight again!

Searches hfqpdb.com database for best coupon by item number while browsing harbor freight's website and displays the price on the webpage next to the retail price.

Update v2.0.1 - Fix issue with duplicate coupons on search page.

Update 09/02/2019 - direct link to privacy policy (we store/collect no data): https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY

Update v2.0.0 - Compatibility with harbor freight website redesign!

Update v1.4.0 - moves CORS request to background page for chrome 73.                    

Informações Básicas da Extensão

Nome Harbor Freight Coupons Harbor Freight Coupons
ID hhbonmijejindhnfgcdggfdbklphhloj
URL Oficial https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj
Descrição Automatically find and display harbor freight coupons on their website from hfqpdb.com
Tamanho do Arquivo 34.84 KB
Contagem de Instalações 7,309
Versão Atual 2.0.1
Última Atualização 2019-09-05
Data de Publicação 2019-09-04
Classificação 3.31/5 Total de 32 Avaliações
Desenvolvedor sclem
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://hfqpdb.com
URL da Página de Política de Privacidade https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Harbor Freight Coupons",
    "short_name": "harbor freight coupon database extension",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "Automatically find and display harbor freight coupons on their website from hfqpdb.com",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png"
    },
    "permissions": [
        "https:\/\/www.hfqpdb.com\/price_check\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.harborfreight.com\/*",
                "https:\/\/shop.harborfreight.com\/*"
            ],
            "js": [
                "helper.js",
                "coupons.js"
            ],
            "run_at": "document_idle"
        }
    ]
}