Skip to content

Commit e9867dc

Browse files
authored
feat(extension): v1.6.8 — fix scripting permission + refresh icons (#822)
* feat(extension): v1.6.8 — remove unused scripting permission, refresh icons - Remove unused `scripting` permission (Chrome Web Store rejection fix) - Bump version 1.6.7 → 1.6.8 - Redesign icons with neon gradient style (pure SVG paths, glow effect) * revert icons to original, fix package.json version to 1.6.8 * test: remove stale scripting permission assertion
1 parent bb7b26b commit e9867dc

8 files changed

Lines changed: 880 additions & 1028 deletions

File tree

extension/dist/background.js

Lines changed: 878 additions & 1024 deletions
Large diffs are not rendered by default.

extension/icons/icon-128.png

-2.7 KB
Loading

extension/icons/icon-16.png

162 Bytes
Loading

extension/icons/icon-32.png

72 Bytes
Loading

extension/icons/icon-48.png

26 Bytes
Loading

extension/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"manifest_version": 3,
33
"name": "OpenCLI",
4-
"version": "1.5.5",
4+
"version": "1.6.8",
55
"description": "Browser automation bridge for the OpenCLI CLI tool. Executes commands in isolated Chrome windows via a local daemon.",
66
"permissions": [
77
"debugger",
8-
"scripting",
98
"tabs",
109
"cookies",
1110
"activeTab",

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencli-extension",
3-
"version": "1.5.5",
3+
"version": "1.6.8",
44
"private": true,
55
"type": "module",
66
"scripts": {

src/extension-manifest-regression.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ describe('extension manifest regression', () => {
1212
};
1313

1414
expect(manifest.permissions).toContain('cookies');
15-
expect(manifest.permissions).toContain('scripting');
1615
expect(manifest.host_permissions).toContain('<all_urls>');
1716
});
1817
});

0 commit comments

Comments
 (0)