텐핑 소문내기

텐핑 소문내기

쇼핑몰 상품 또는 페이지를 소문내고 포인트를 쌓으세요. 브라우저 우측 상단 텐핑 아이콘을 클릭만 하시면 됩니다.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "텐핑 소문내기",
  "version": "3.0",
  "description": " 쇼핑몰 상품 또는 페이지를 소문내고 포인트를 쌓으세요. 브라우저 우측 상단 텐핑 아이콘을 클릭만 하시면 됩니다.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.0.3.min.js",
        "TenpingExtention.js"
      ]
    }
  ],
  "icons": {
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "jquery-2.0.3.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "widget_makeURL.html",
    "default_title": "텐핑 소문내기",
    "default_icon": "/icons/icon_48.png"
  },
  "permissions": [
    "cookies",
    "http://*/*",
    "https://*/*",
    "http://tenping.kr/",
    "tabs"
  ]
}