chrome-webstore
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -10,5 +10,5 @@ | ||
extension: ({id, origin}) => | ||
extension: ({url, id}) => | ||
request({ | ||
url: `${origin || 'https://chrome.google.com'}/webstore/detail/${id}` | ||
url: url || `https://chrome.google.com/webstore/detail/${id}` | ||
}) | ||
@@ -15,0 +15,0 @@ .then(({body}) => format(extract(id, body))) |
{ | ||
"name": "chrome-webstore", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Chrome WebStore Tools", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -11,2 +11,6 @@ | ||
var meta = await chrome.extension({id: 'ckkdlimhmcjmikdlpkmbgfkaikojcbjk'}) | ||
// or | ||
var meta = await chrome.extension({ | ||
url: 'https://chrome.google.com/webstore/detail/markdown-viewer/ckkdlimhmcjmikdlpkmbgfkaikojcbjk' | ||
}) | ||
console.log(meta) | ||
@@ -13,0 +17,0 @@ })() |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6925
49