Page rank 2

Page rank 2

The chrome extension to detect page rank.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Page rank 2",
  "version": "1.0.0",
  "description": "The chrome extension to detect page rank.",
  "manifest_version": 3,
  "author": "Ivan so",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_title": "Page Rank Two",
    "default_popup": "index.html",
    "default_icon": {
      "16": "logo.png",
      "24": "logo.png",
      "32": "logo.png"
    }
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://openpagerank.com/*"
  ]
}