Skip to content

Commit 1d4ae71

Browse files
committed
update graphics
1 parent d2a6db8 commit 1d4ae71

9 files changed

+8
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ console.diffLeft(left);
1212
console.diffRight(right);
1313
console.diffPush(next); // private case of console.diff with single argument
1414
```
15-
![screenshot](./doc/screenshot.png)
15+
![screenshot](./doc/screenshot-01.png)
1616

1717
Usage basics
1818
===

doc/screenshot-00.png

108 KB
Loading

doc/screenshot-01.png

109 KB
Loading

doc/screenshot.png

-82.6 KB
Binary file not shown.

manifest.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "JSDiff Devtool",
3-
"version": "0.1",
3+
"version": "1.0",
44
"manifest_version": 2,
55
"minimum_chrome_version": "64.0",
66
"devtools_page": "src/jsdiff-devtools.html",
77
"icons": {
8-
"16": "src/img/panel-icon16.png"
8+
"128": "src/img/panel-icon128.png"
99
},
1010
"background": {
1111
"persistent": false,
@@ -18,8 +18,6 @@
1818
"http://*/*",
1919
"https://*/*",
2020
"file:///*",
21-
"activeTab",
22-
"tabs",
2321
"clipboardWrite"
2422
]
2523
}

src/img/panel-icon128.png

3.62 KB
Loading

src/img/panel-icon16.png

-1.28 KB
Binary file not shown.

src/js/app/panel.vue.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ define(['api'], function(api) {
5757
'console.diff({a:1,b:1}, {a:1,b:2});'
5858
]),
5959
ce('div', {class: ['-links']}, [
60-
'This extension based on ',
61-
ce('a', {attrs: {href: this.git.diffApi, target: '_blank'}}, 'jsondiffpatch'),
62-
' and available at ',
63-
ce('a', {attrs: {href: this.git.self, target: '_blank'}}, 'github'),
64-
'.'
60+
'Based on ',
61+
ce('a', {attrs: {href: this.git.diffApi, target: '_blank'}}, 'benjamine/jsondiffpatch'),
62+
', available at ',
63+
ce('a', {attrs: {href: this.git.self, target: '_blank'}}, 'zendive/jsdiff')
6564
])
6665
])
6766
])

src/js/jsdiff-devtools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Create panel
44
chrome.devtools.panels.create(
55
'JSDiff',
6-
'/src/img/panel-icon16.png',
6+
'/src/img/panel-icon128.png',
77
'/src/jsdiff-panel.html',
88
(panel) => {
99
panel.onSearch.addListener(sendMessage('jsdiff-panel-search'));

0 commit comments

Comments
 (0)