From 5b06dfd3ff53cb1ba5e96814654c51b52fc831c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=90=BC?= <619591477@qq.com> Date: Thu, 16 Jun 2022 12:17:29 +0000 Subject: [PATCH 1/3] afasf --- manifest.json | 43 +++++++++++++++++++++++++++++++++++++++++++ postcss.config.js | 6 ++++++ tailwind.config.js | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 82 insertions(+) create mode 100644 manifest.json create mode 100644 postcss.config.js create mode 100644 tailwind.config.js diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..a246967 --- /dev/null +++ b/manifest.json @@ -0,0 +1,43 @@ +{ + "manifest_version": 2, + "name": "Automa", + "background": { + "scripts": [ + "background.bundle.js" + ], + "persistent": false + }, + "browser_action": { + "default_popup": "popup.html", + "default_icon": "icon-128.png" + }, + "icons": { + "128": "icon-128.png" + }, + "content_scripts": [ + { + "matches": [ + "" + ], + "js": [ + "shortcut.bundle.js" + ], + "run_at": "document_end", + "all_frames": false + } + ], + "permissions": [ + "tabs", + "proxy", + "alarms", + "storage", + "unlimitedStorage", + "" + ], + "web_accessible_resources": [ + "/elementSelector.css", + "/Inter-roman-latin.var.woff2", + "/locales/*", + "elementSelector.bundle.js" + ] +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..efb70db --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,33 @@ +const colors = require('tailwindcss/colors'); + +module.exports = { + mode: 'jit', + purge: ['./src/**/*.{js,jsx,ts,tsx,vue}'], + darkMode: 'class', // or 'media' or 'class' + theme: { + extend: { + colors: { + primary: colors.blue['500'], + secondary: colors.blue['400'], + accent: colors.gray['900'], + gray: colors.gray, + orange: colors.orange, + }, + fontFamily: { + sans: ['Poppins', 'sans-serif'], + mono: ['JetBrains Mono', 'monospace'], + }, + container: { + center: true, + padding: { + DEFAULT: '1rem', + sm: '2rem', + }, + }, + }, + }, + variants: { + extend: {}, + }, + plugins: [], +}; -- Gitee From 4a1e06d770b6d978f8d42a553a1d134a80659932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=90=BC?= <619591477@qq.com> Date: Fri, 9 Jun 2023 02:33:46 +0000 Subject: [PATCH 2/3] update index.html. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陈琼 <619591477@qq.com> --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8373571..0fac9d3 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Document + Document123

hello world

-- Gitee From accb5caa8bbfe41fdd194e4ab788a00c638ca498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=90=BC?= <619591477@qq.com> Date: Tue, 13 Aug 2024 02:13:22 +0000 Subject: [PATCH 3/3] update package-lock.json. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陈琼 <619591477@qq.com> --- package-lock.json | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0cb7711..deff77b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,13 +34,7 @@ "@babel/template": "^7.12.13", "@babel/traverse": "^7.13.0", "@babel/types": "^7.13.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "semver": "^6.3.0", - "source-map": "^0.5.0" +" } }, "@babel/generator": { @@ -77,16 +71,7 @@ "version": "7.13.10", "resolved": "https://registry.npm.taobao.org/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.13.10.tgz?cache=0&sync_timestamp=1615243025022&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.13.10.tgz", "integrity": "sha1-ExChZ4y4QnwHp1N1DaT4zkQr3Qw=", - "dev": true, - "requires": { - "@babel/compat-data": "^7.13.8", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.14.5", - "semver": "^6.3.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.13.10", + "resolved": "https://registry.npm.taobao.org/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.13.10.tgz", "integrity": "sha1-Bzsru5JaCXZDxvxXcOXxM5Toh8k=", "dev": true, -- Gitee