AltYes

AltYes

Share and monetize your experiences on many social media networks including the Hive chain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AltYes",
  "short_name": "AltYes",
  "version": "1.2.5",
  "icons": {
    "16": "assets/imgs/icon16.png",
    "48": "assets/imgs/icon48-2.png",
    "128": "assets/imgs/icon128.png"
  },
  "description": "Share and monetize your experiences on many social media networks including the Hive chain.",
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "AltYes extension",
    "default_icon": {
      "48": "assets/imgs/icon48-2.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://hive.blog/*"
      ],
      "js": [
        "contentPage.js"
      ],
      "css": [
        "contentStyle.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "injectHiveblog.js"
  ],
  "background": {
    "scripts": [
      "backgroundPage.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "offline_enabled": false
}