mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-26 21:21:53 +08:00
basic asset
This commit is contained in:
@@ -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!
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
console.log("Service Worker Is Running!")
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
console.log("Content Script Running!")
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 6.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
@@ -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": ["<all_urls>"],
|
||||||
|
"js": ["content.js"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"icons": {
|
||||||
|
"16": "/images/icon16.png",
|
||||||
|
"48": "/images/icon48.png",
|
||||||
|
"128": "/images/icon128.png"
|
||||||
|
}
|
||||||
|
}
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Popup</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>My Chrome Extension</h1>
|
||||||
|
<p>This is a sample popup.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user