-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mariusz Przodała
authored and
Mariusz Przodała
committed
Sep 27, 2023
1 parent
f8201f3
commit dc1d53d
Showing
16 changed files
with
229 additions
and
402 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
body{margin:0} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<script src="devtools.js"></script> | ||
</body> | ||
</html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Eventrix devtools</title> | ||
</head> | ||
<body> | ||
<script src="devtools.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=424)}({424:function(e,t){chrome.devtools.panels.create("Eventrix","images/eventrix_16x16.png","panel.html",null)}}); | ||
chrome.devtools.panels.create('Eventrix', | ||
'assets/eventrix_16x16.png', | ||
'index.html', | ||
null | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/assets/eventrix_16x16.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Eventrix</title> | ||
<script type="module" crossorigin src="/assets/index-6d5a4c8e.js"></script> | ||
<link rel="stylesheet" href="/assets/index-6d606818.css"> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
{ | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"name": "Eventrix devtools", | ||
"short_name": "Eventrix devtools", | ||
"description": "Extension for Eventrix", | ||
"permissions": ["activeTab", "scripting"], | ||
"host_permissions": ["<all_urls>"], | ||
"devtools_page": "devtools.html", | ||
"action": { | ||
"default_assets/icon": { | ||
"16": "images/eventrix_16x16.png", | ||
"32": "images/eventrix_32x32.png", | ||
"48": "images/eventrix_48x48.png", | ||
"64": "images/eventrix_64x64.png", | ||
"128": "images/eventrix_128x128.png" | ||
"16": "assets/eventrix_16x16.png", | ||
"32": "assets/eventrix_32x32.png", | ||
"48": "assets/eventrix_48x48.png", | ||
"64": "assets/eventrix_64x64.png", | ||
"128": "assets/eventrix_128x128.png" | ||
} | ||
}, | ||
"icons": { | ||
"16": "images/eventrix_16x16.png", | ||
"32": "images/eventrix_32x32.png", | ||
"48": "images/eventrix_48x48.png", | ||
"64": "images/eventrix_64x64.png", | ||
"128": "images/eventrix_128x128.png" | ||
"16": "assets/eventrix_16x16.png", | ||
"32": "assets/eventrix_32x32.png", | ||
"48": "assets/eventrix_48x48.png", | ||
"64": "assets/eventrix_64x64.png", | ||
"128": "assets/eventrix_128x128.png" | ||
}, | ||
"manifest_version": 3 | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.