diff --git a/index.html b/index.html
index 83735715cfa6225baa5b3310a6e5a2f8e8f20628..0fac9d3e62dfc9ef012eabc933d625f8f4dfdb3c 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
Document
+ Document123
hello world
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..a246967fa456f5837644ee785ded482974b581eb
--- /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/package-lock.json b/package-lock.json
index 0cb7711069bf0f1fdbe1783f08c88f8d04fcbb6f..deff77b67a8ef1cd56264eee8ace97c7f5e63f7c 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,
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000000000000000000000000000000000000..12a703d900da8159c30e75acbd2c4d87ae177f62
--- /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 0000000000000000000000000000000000000000..efb70db80850ff20d764d93747cc41ea65ab5c50
--- /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: [],
+};