From 0ade6d31938eacb4aa160cf70d5a6bbd33950e7c Mon Sep 17 00:00:00 2001 From: Tarik Gul <47201679+TarikGul@users.noreply.github.com> Date: Sun, 14 Jul 2024 08:41:19 -0700 Subject: [PATCH] Clean manifest build (#1398) * Clean manifest build * newline in gitignore --- .gitignore | 3 ++- packages/extension/manifest.json | 42 -------------------------------- 2 files changed, 2 insertions(+), 43 deletions(-) delete mode 100644 packages/extension/manifest.json diff --git a/.gitignore b/.gitignore index 7d093d7587..756e95a26c 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,5 @@ package-lock.json _book docs/html .idea -.vscode \ No newline at end of file +.vscode +packages/extension/manifest.json diff --git a/packages/extension/manifest.json b/packages/extension/manifest.json deleted file mode 100644 index 07f3b646c4..0000000000 --- a/packages/extension/manifest.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "author": "polkadot.{js}", - "description": "Manage your Polkadot accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.", - "homepage_url": "https://github.com/polkadot-js/extension", - "name": "polkadot{.js} extension", - "short_name": "polkadot{.js}", - "manifest_version": 3, - "permissions": ["storage", "tabs", "alarms"], - "background": { - "scripts": ["background.js"], - "type": "module" - }, - "action": { - "default_title": "polkadot{.js}", - "default_popup": "index.html" - }, - "content_scripts": [{ - "js": ["content.js"], - "matches": ["http://*/*", "https://*/*"], - "run_at": "document_start" - }], - "icons": { - "16": "images/icon-16.png", - "32": "images/icon-32.png", - "48": "images/icon-48.png", - "64": "images/icon-64.png", - "128": "images/icon-128.png" - }, - "web_accessible_resources": [ - { - "resources": [ - "page.js" - ], - "matches": [ - "*://*/*" - ] - } - ], - "content_security_policy": { - "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" - } -}