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
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 628 B After Width: | Height: | Size: 790 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -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,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>');
|
||||
});
|
||||
});
|
||||
|
||||