Style Tab

Style Tab

(mv3) 1.use picture as background of newtab and sites easily; 2.save tab sessions; 3.Regex Search web Page; 4.Custom Functions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Style Tab",
  "manifest_version": 3,
  "version": "3.3.589",
  "background": {
    "service_worker": "./background/C.C.background.js",
    "type": "module"
  },
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "chrome_url_overrides": {
    "newtab": "./newTab/C.C.Chrome.NewTab.html"
  },
  "action": {
    "default_icon": {
      "16": "./image/logo-128.png",
      "32": "./image/logo-128.png",
      "48": "./image/logo-128.png",
      "64": "./image/logo-128.png",
      "128": "./image/logo-128.png"
    },
    "default_popup": "./popup/C.C.Chrome.NewTab.popup.html",
    "default_title": "Style Tab"
  },
  "icons": {
    "16": "./image/logo-128.png",
    "32": "./image/logo-128.png",
    "48": "./image/logo-128.png",
    "64": "./image/logo-128.png",
    "128": "./image/logo-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./content/content_depend.js",
        "./plugins/scrollTopOrBottom.js",
        "./plugins/regexSearch.js",
        "./content/C.C.CSS.js",
        "./plugins/Readability.js",
        "./plugins/saveFullHtml.js"
      ],
      "css": [
        "./CSS/C.C.css",
        "./CSS/C.C.icon.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "./plugins/inPageSearch.js"
      ],
      "css": [
        "./plugins/chromeBookmarks.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "./content/C.C.CSS.document_end.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/page-script.js",
        "content/custom_functions_units.js",
        "image/logo-128.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src  'self'   'wasm-unsafe-eval'  ;  object-src 'self'; frame-src 'self' ; worker-src 'self'",
    "sandbox": "sandbox allow-scripts   allow-forms allow-popups allow-modals ; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*   ; img-src 'self' * data: https://* http://*; object-src 'self';  worker-src 'self';  "
  },
  "sandbox": {
    "pages": [
      "C.C.sandbox.html"
    ]
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "background/rules_1.json"
      }
    ]
  },
  "permissions": [
    "alarms",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback",
    "activeTab",
    "scripting",
    "browsingData",
    "background",
    "bookmarks",
    "contextMenus",
    "idle",
    "notifications",
    "tabs",
    "storage",
    "unlimitedStorage",
    "tts"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_host_permissions": [],
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}