diff --git a/README.md b/README.md new file mode 100644 index 0000000..a0b1022 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# W.I.P WARNING! + +This is a WIP repos. + +DO NOT USE IT in any prod env. + +If the plugin is finished, try it with yakit, happy game! \ No newline at end of file diff --git a/background.js b/background.js new file mode 100644 index 0000000..d02b4f3 --- /dev/null +++ b/background.js @@ -0,0 +1 @@ +console.log("Service Worker Is Running!") \ No newline at end of file diff --git a/content.js b/content.js new file mode 100644 index 0000000..cefb24f --- /dev/null +++ b/content.js @@ -0,0 +1 @@ +console.log("Content Script Running!") \ No newline at end of file diff --git a/images/icon128.png b/images/icon128.png new file mode 100644 index 0000000..7df3a1c Binary files /dev/null and b/images/icon128.png differ diff --git a/images/icon16.png b/images/icon16.png new file mode 100644 index 0000000..a6ef813 Binary files /dev/null and b/images/icon16.png differ diff --git a/images/icon48.png b/images/icon48.png new file mode 100644 index 0000000..b59b6e6 Binary files /dev/null and b/images/icon48.png differ diff --git a/images/yakitlogo.png b/images/yakitlogo.png new file mode 100644 index 0000000..a2fa6f9 Binary files /dev/null and b/images/yakitlogo.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..ac5395c --- /dev/null +++ b/manifest.json @@ -0,0 +1,29 @@ +{ + "manifest_version": 3, + "name": "Yakit Chrome Endpoint", + "version": "1.0", + "description": "A Endpoint for Yakit MITM or more", + "action": { + "default_popup": "popup.html", + "default_icon": { + "16": "/images/icon16.png", + "48": "/images/icon48.png", + "128": "/images/icon128.png" + } + }, + "background": { + "service_worker": "background.js" + }, + "permissions": ["activeTab", "scripting"], + "content_scripts": [ + { + "matches": [""], + "js": ["content.js"] + } + ], + "icons": { + "16": "/images/icon16.png", + "48": "/images/icon48.png", + "128": "/images/icon128.png" + } +} \ No newline at end of file diff --git a/popup.html b/popup.html new file mode 100644 index 0000000..43ab9f2 --- /dev/null +++ b/popup.html @@ -0,0 +1,10 @@ + + + + Popup + + +

My Chrome Extension

+

This is a sample popup.

+ + \ No newline at end of file