Search for post period

Search for post period

This is an extension that searches the post period.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Search for post period",
  "version": "6.0.0.94",
  "version_name": "0.0.0.94",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "128": "/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "/js/load.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "/js/disable.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "bookmarks",
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "12": "/icon/icon_128.png"
    },
    "default_title": "Create search word",
    "default_popup": "/html/popup.html"
  }
}