InstaDo

InstaDo

Personalize your explorer page on Insta with the content you like How to use: 1- Go to the #page and click on one post 2- Click on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "InstaDo",
  "version": "0.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "instaLike.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "instaLike.png",
    "default_title": "InstaDo"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "instaLike.png",
    "48": "instaLike.png",
    "128": "instaLike.png"
  }
}