Craigslist Helper for Inoreader

Craigslist Helper for Inoreader

Read your personal Craigslist RSS feeds with this extension inside Inoreader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Craigslist Helper for Inoreader",
  "description": "Read your personal Craigslist RSS feeds with this extension inside Inoreader",
  "version": "0.9.10",
  "icons": {
    "16": "16_x_16_pixels.png",
    "48": "48_x_48_pixels.png",
    "128": "128_x_128_pixels.png"
  },
  "background": {
    "scripts": [
      "/lib/utf8_encode.js",
      "/lib/crc32.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.inoreader.com/*"
      ],
      "js": [
        "page.js"
      ]
    }
  ]
}