From e14e02db989816dc927692c1c0f0ba005ae944e9 Mon Sep 17 00:00:00 2001 From: Enix Date: Wed, 10 Apr 2019 09:58:23 +0800 Subject: [PATCH] chore: update description, change permissions --- package.json | 2 +- src/manifest.json | 20 ++++++-------------- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index b91b864..a4cc2ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitako", "version": "0.4.16", - "description": "yet another extension for GitHub", + "description": "The missing part of GitHub.", "repository": "https://github.com/EnixCoda/Gitako", "author": "EnixCoda", "license": "MIT", diff --git a/src/manifest.json b/src/manifest.json index 77e9ce1..ed41740 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,26 +1,18 @@ { "manifest_version": 2, - "name": "Gitako - enhanced Github code tree", + "name": "Gitako - Github file tree", "version": "0.4.16", + "description": "The missing part of GitHub.", "author": "EnixCoda", "icons": { "128": "icons/Gitako-128x128.png" }, - "description": "yet another GitHub extension, inspired by Octotree and GayHub.", "homepage_url": "https://github.com/EnixCoda/Gitako", - "permissions": [ - "tabs", - "storage", - "*://github.com/*" - ], + "permissions": ["storage", "*://github.com/*"], "content_scripts": [ { - "matches": [ - "https://github.com/*" - ], - "js": [ - "content.js" - ] + "matches": ["https://github.com/*"], + "js": ["content.js"] } ] -} \ No newline at end of file +}