Tacmin Whatsapp

Tacmin Yazılım Toplu Whatsapp Uygulaması İle Toplu Mesaj Göndermek İçin Yüklenecek Eklenti
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tacmin Whatsapp",
  "version": "1.0.7",
  "description": "Tacmin Yazılım Toplu Whatsapp Uygulaması İle Toplu Mesaj Göndermek İçin Yüklenecek Eklenti",
  "icons": {
    "128": "logo/128.png"
  },
  "browser_action": {
    "default_title": "Tacmin Whatsapp",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.whatsapp.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.js",
      "background.js"
    ]
  },
  "author": "Tacmin Yazılım",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "webRequest",
    "tabs",
    "https://web.whatsapp.com/*"
  ],
  "web_accessible_resources": [
    "js/jquery.js",
    "js/content.js"
  ]
}