Build v5.10.1

main
Elbert Alias 5 years ago
parent dbcc340926
commit 569030ce93

@ -4660,7 +4660,7 @@
], ],
"icon": "gRPC.png", "icon": "gRPC.png",
"headers": { "headers": {
"Content-Type": "^application\\/grpc.+$" "Content-Type": "^application\\/grpc"
}, },
"website": "https://grpc.io" "website": "https://grpc.io"
}, },
@ -5364,7 +5364,9 @@
"cats": [ "cats": [
6 6
], ],
"js": {"j2storeURL":""}, "js": {
"j2storeURL": ""
},
"icon": "j2store.png", "icon": "j2store.png",
"implies": "Joomla", "implies": "Joomla",
"website": "https://www.j2store.org/" "website": "https://www.j2store.org/"
@ -6282,9 +6284,10 @@
}, },
"Livewire": { "Livewire": {
"cats": [ "cats": [
18, 19 18,
19
], ],
"html": "<[^>]+wire:[^<]+", "html": "<[^>]+wire:",
"icon": "Livewire.png", "icon": "Livewire.png",
"implies": "Laravel", "implies": "Laravel",
"js": { "js": {
@ -10846,8 +10849,7 @@
66 66
], ],
"html": [ "html": [
"<link[^>]+?href=\"[^\"]+tailwindcss(?:\\.min)?\\.css", "<link[^>]+?href=\"[^\"]+tailwindcss(?:\\.min)?\\.css"
"[^>]*class=\"[^\"]*(?:sm:|md:|lg:|xl:)"
], ],
"icon": "tailwindcss.svg", "icon": "tailwindcss.svg",
"website": "https://tailwindcss.com/" "website": "https://tailwindcss.com/"
@ -12310,10 +12312,10 @@
23 23
], ],
"headers": { "headers": {
"x-powered-by": "^Optimized by WPCacheOn.+" "x-powered-by": "^Optimized by WPCacheOn"
}, },
"icon": "WPCacheOn.png", "icon": "WPCacheOn.png",
"implies":[ "implies": [
"WordPress" "WordPress"
], ],
"website": "https://wpcacheon.io" "website": "https://wpcacheon.io"
@ -12332,7 +12334,7 @@
"meta": { "meta": {
"generator": "kolors4u (?: ([\\d.]+))?\\;version:\\1" "generator": "kolors4u (?: ([\\d.]+))?\\;version:\\1"
}, },
"icon": "kolors4u.png", "icon": "kolors4u.png",
"website": "http://kolors4u.com" "website": "http://kolors4u.com"
}, },
"Wowza Media Server": { "Wowza Media Server": {

@ -2,7 +2,7 @@
"name": "wappalyzer", "name": "wappalyzer",
"description": "Identify technology on websites", "description": "Identify technology on websites",
"homepage": "https://www.wappalyzer.com", "homepage": "https://www.wappalyzer.com",
"version": "5.10.0", "version": "5.10.1",
"author": "Wappalyzer", "author": "Wappalyzer",
"license": "MIT", "license": "MIT",
"repository": { "repository": {

@ -24,11 +24,11 @@ browser.tabs.onRemoved.addListener((tabId) => {
function userAgent() { function userAgent() {
const url = chrome.extension.getURL('/') const url = chrome.extension.getURL('/')
if (url.match(/^moz-/)) { if (url.startsWith('moz-')) {
return 'firefox' return 'firefox'
} }
if (url.match(/^ms-browser-/)) { if (url.startsWith('ms-browser')) {
return 'edge' return 'edge'
} }

@ -4,7 +4,7 @@
"author": "Wappalyzer", "author": "Wappalyzer",
"homepage_url": "https://www.wappalyzer.com", "homepage_url": "https://www.wappalyzer.com",
"description": "Identify web technologies", "description": "Identify web technologies",
"version": "5.10.0", "version": "5.10.1",
"default_locale": "en", "default_locale": "en",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {

Loading…
Cancel
Save