Listing Maps for Kijiji

Places a button beside each Kijiji listing, and will display the location on a map once clicked.

Qu'est-ce que Listing Maps for Kijiji ?

Listing Maps for Kijiji est une extension Chrome développée par Tromdev, et sa fonction principale est "Places a button beside each Kijiji listing, and will display the location on a map once clicked.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Listing Maps for Kijiji

Téléchargez les fichiers d'extension Listing Maps for Kijiji au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Click the map marker icon beside each Ad listing, and a map will pop up below the listing centered on the location. Click on the map marker again to hide the map.


**Will not work for an external "Partner Listing", because there is no address given.**                    

Informations de Base sur l'Extension

Nom Listing Maps for Kijiji Listing Maps for Kijiji
ID odklgabfpnlnkaanboaaeoocajkanhng
URL Officiel https://chromewebstore.google.com/detail/listing-maps-for-kijiji/odklgabfpnlnkaanboaaeoocajkanhng
Description Places a button beside each Kijiji listing, and will display the location on a map once clicked.
Taille du Fichier 376 KB
Nombre d'Installations 29
Version Actuelle 1.1
Dernière Mise à Jour 2016-03-20
Date de Publication 2016-03-19
Développeur Tromdev
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Listing Maps for Kijiji",
    "version": "1.1",
    "description": "Places a button beside each Kijiji listing, and will display the location on a map once clicked.",
    "icons": {
        "128": "images\/canada_big.jpg"
    },
    "background": {
        "scripts": [
            "jquery-2.2.1.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "jquery-2.2.1.min.js",
                "jquery-ui-1.11.4\/jquery-ui.js",
                "kijiji_content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/maps.google.com\/*",
        "https:\/\/maps.googleapis.com\/*",
        "http:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "images\/marker.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/maps.gstatic.com; object-src 'self'",
    "web_accessible_resources": [
        "images\/*.png"
    ]
}