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
This commit is contained in:
jakevin
2026-04-06 02:07:00 +08:00
committed by GitHub
parent bb7b26bc4a
commit e9867dcab0
8 changed files with 874 additions and 1022 deletions
+872 -1018
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 628 B

After

Width:  |  Height:  |  Size: 790 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+1 -2
View File
@@ -1,11 +1,10 @@
{
"manifest_version": 3,
"name": "OpenCLI",
"version": "1.5.5",
"version": "1.6.8",
"description": "Browser automation bridge for the OpenCLI CLI tool. Executes commands in isolated Chrome windows via a local daemon.",
"permissions": [
"debugger",
"scripting",
"tabs",
"cookies",
"activeTab",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "opencli-extension",
"version": "1.5.5",
"version": "1.6.8",
"private": true,
"type": "module",
"scripts": {
@@ -12,7 +12,6 @@ describe('extension manifest regression', () => {
};
expect(manifest.permissions).toContain('cookies');
expect(manifest.permissions).toContain('scripting');
expect(manifest.host_permissions).toContain('<all_urls>');
});
});