CLMapper

Craigslist posts shown on a map.

CLMapper क्या है?

CLMapper ahamlett.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Craigslist posts shown on a map."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CLMapper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Browse to the CraigsList housing section and the listings will be displayed on a map.

Changes in Version 2.0.1:
* remove favorites because CL has implemented their own star next to listings

Changes in Version 1.5.1:
* Share & collaborate your favorites list

Changes in Version 1.4.2:
* Finding more postal addresses from Html
* Showing ban icon for listings not on map

Changes in Version 1.3.9:
* option to disable auto-scrolling

Changes in Version 1.3.8:
* fixed blank favorite titles bug
* margin for star icon
* background page no longer persistent to save memory

Changes in Version 1.3.7:
* save favorites by clicking the star icon
* markers highlight when mouse over listings
* fixed bugs

Open Sourced! Fork me on GitHub:
github.com/alanhamlett/CLMapper

Note: As of October 2012 CraigsList has a map view for housing.
This means I will no longer be developing CLMapper.
For Craigslist map view, go here: sfbay.craigslist.org/search/hhh?useMap=1                    

एक्सटेंशन की मूल जानकारी

नाम CLMapper CLMapper
ID omonmigaleaafgpkgoammpclbcdepjpi
आधिकारिक URL https://chrome.google.com/webstore/detail/clmapper/omonmigaleaafgpkgoammpclbcdepjpi
विवरण Craigslist posts shown on a map.
फ़ाइल का आकार 175 KB
स्थापना संख्या 798
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2014-02-14
प्रकाशन तिथि 2014-02-14
रेटिंग 3.91/5 कुल 32 रेटिंग्स
डेवलपर ahamlett.com
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CLMapper",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "Craigslist posts shown on a map.",
    "homepage_url": "http:\/\/ahamlett.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.craigslist.org\/*",
                "*:\/\/*.craigslist.com.mx\/*",
                "*:\/\/*.craigslist.co.uk\/*",
                "*:\/\/*.craigslist.ca\/*",
                "*:\/\/*.craigslist.de\/*",
                "*:\/\/*.craigslist.co.kr\/*",
                "*:\/\/*.craigslist.co.in\/*",
                "*:\/\/*.craigslist.se\/*",
                "*:\/\/*.craigslist.at\/*"
            ],
            "include_globs": [
                "*\/hhh*",
                "*\/apa*",
                "*\/roo*",
                "*\/sub*",
                "*\/hsw*",
                "*\/swp*",
                "*\/vac*",
                "*\/prk*",
                "*\/off*",
                "*\/rea*",
                "*\/reb*",
                "*\/aap*",
                "*\/abo*",
                "*\/nfb*",
                "*\/fee*",
                "*\/nfa*",
                "*\/aiv*",
                "*\/sha*",
                "*\/reo*"
            ],
            "exclude_matches": [
                "*:\/\/www.craigslist.org\/*",
                "*:\/\/craigslist.org\/*",
                "*:\/\/*\/feedback"
            ],
            "js": [
                "libs\/jquery.js",
                "libs\/lscache.js",
                "libs\/PageInterface.js",
                "libs\/Geocoder.js",
                "libs\/jquery.scrollTo.js",
                "pages\/housing\/index\/content_script.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "libs\/jquery.js",
            "libs\/lscache.js",
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "pages\/housing\/index\/bootstrap.css",
        "pages\/housing\/index\/page_style.css",
        "pages\/housing\/index\/page_script.js",
        "libs\/bootstrap\/js\/bootstrap.min.js",
        "images\/marker-normal.png",
        "images\/marker-normal-active.png",
        "images\/marker-normal-visited.png",
        "images\/marker-fee.png",
        "images\/marker-fee-active.png",
        "images\/marker-fee-visited.png",
        "images\/marker-blank.png",
        "images\/marker-shadow.png",
        "images\/icon-ban-circle.png"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "minimum_chrome_version": "20",
    "permissions": [
        "storage",
        "http:\/\/maps.googleapis.com\/",
        "*:\/\/*.craigslist.org\/",
        "*:\/\/*.craigslist.com.mx\/",
        "*:\/\/*.craigslist.co.uk\/",
        "*:\/\/*.craigslist.ca\/",
        "*:\/\/*.craigslist.de\/",
        "*:\/\/*.craigslist.co.kr\/",
        "*:\/\/*.craigslist.co.in\/",
        "*:\/\/*.craigslist.se\/",
        "*:\/\/*.craigslist.at\/"
    ]
}