Lisstify

Lisstify

ID: gblekkmmmgnmafpdckoapgbcmoiageln

Supported Languages

🇺🇸English

Extension Info & Metadata

Status
Active
Version
1.3.5
Size
0.64 MB
Rating
4.4/5
Reviews
43
Users
10,000
Type
Extension
Updated
Jul 29, 2026
Category
Tools
Price
Paid
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Trusted
Author
MADQUICK DIGITAL AGENCY PRIVATE LIMITEDView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
Yes
Mailbox exists
Yes
Total Extensions
1
Active
1
Obsolete
0
Listed
1
Unlisted
0
Total Users
0
Screenshot 1
Screenshot 2
Screenshot 3
Screenshot 4
Screenshot 5

Save & autofill product listing templates on Meesho Supplier Panel. Add catalogs faster.

Lisstify is a smart autofill extension built specifically for Meesho suppliers. Save your product listing templates once and autofill them instantly — add catalogs to Meesho Supplier Panel in a fraction of the time. WHY LISSTIFY? Meesho suppliers know the pain — filling out the same product details, descriptions, sizes, prices, and specifications over and over for every catalog. Lisstify eliminates that repetitive work completely. KEY FEATURES - Save product listing templates for Meesho catalogs - Autofill product forms on Meesho Supplier Panel instantly - Add multiple catalogs without retyping the same details - Works directly inside the Meesho Supplier Panel - Free plan available with Pro plan for heavy sellers WHO IS IT FOR? - Meesho suppliers managing large catalogs - Resellers adding new products frequently - Suppliers with repeated product types (e.g. same size sets, same specs) - Anyone looking to scale their Meesho store faster GET STARTED Install Lisstify → Open Meesho Supplier Panel → Save your first template → Autofill any listing in one click. Start listing faster today!

Item
Type
Severity
Description
scripting
Permission
Critical
This permission allows injection and execution of JavaScript on any webpage. Rated Critical because it can modify page content, steal sensitive data, and inject malicious code into any site the extension has access to.
declarativeNetRequest
Permission
Critical
This permission allows the extension to define rules to block, redirect, or modify network requests. Rated Critical because it can control all network traffic, potentially blocking security updates or redirecting to malicious sites.
Contextual Risk Factors
Risk Factor
High
The following context increases the overall risk:• 10% increase: Early script execution enables pre-emptive content manipulation
activeTab
Permission
Medium
This permission grants temporary access to the current tab. Rated Medium because it can access current page content when invoked, though limited to user-initiated actions.
storage
Permission
Medium
This permission allows storing data locally in the browser. Rated Medium because it can persist sensitive user data, track user activities over time, and potentially store malicious payloads.
unlimitedStorage
Permission
Medium
This permission removes storage quota restrictions. Rated Medium because it can store large amounts of user data without limits, potentially impacting browser performance and storing extensive tracking data.
tabs
Permission
Medium
This permission enables tab management and monitoring. Rated Medium because it can track open tabs, access tab metadata, and monitor user browsing patterns.
https://listify-backend-q3md.onrender.com/*
Host
Medium
Host permission — access limited to this URL pattern.
https://lisstify.com/*
Host
Medium
Host permission — access limited to this URL pattern.
http://localhost:4009/*
Host
Medium
Host permission — access limited to this URL pattern.
http://localhost:3000/*
Host
Medium
Host permission — access limited to this URL pattern.
*://seller.flipkart.com/*
Host
Medium
Host permission — access limited to this URL pattern.
*://*.flixcart.com/*
Host
Medium
Host permission — access limited to this URL pattern.
*://supplier.meesho.com/*
Host
Medium
Host permission — access limited to this URL pattern.
https://messho-images.picckie.com/*
Host
Medium
Host permission — access limited to this URL pattern.
Early Content Script Execution
Risk Factor
Medium
This extension runs content scripts at document_start.
windows
Permission
Unknown
No classification available for this permission.

The bundled manifest declares 7 permissions (including unlimitedStorage and declarativeNetRequest) plus 8 host_permissions covering two major e-commerce supplier panels, two localhost dev URLs, a legacy backend URL, and a third-party image domain. The live CWS listing's published manifest shows only 5 permissions and a single host (https://lisstify.com/*). Users who review permissions before installation are shown a dramatically reduced footprint compared to what the installed extension actually requests. The declarativeNetRequest permission is paired with an empty rules.json, suggesting it was added speculatively or for future use without disclosure.

manifest.json (Line 11)
{  "permissions": [    "activeTab",    "scripting",    "storage",    "unlimitedStorage",    "tabs",    "windows",    "declarativeNetRequest"  ],  "host_permissions": [    "https://listify-backend-q3md.onrender.com/*",    "https://lisstify.com/*",    "http://localhost:4009/*",    "http://localhost:3000/*",    "*://seller.flipkart.com/*",    "*://*.flixcart.com/*",    "*://supplier.meesho.com/*",    "https://messho-images.picckie.com/*"  ]}

The extension injects itself into the Meesho supplier panel's MAIN world (bypassing CSP) and monkey-patches both `window.fetch` and `XMLHttpRequest.prototype` to silently intercept Meesho's internal `getTransferPrice` API responses. The captured shipping-cost data is then persisted to the publisher's backend via the `save_shipping_costs` message handler. While the stated purpose (finding the product image with the lowest shipping fee) is aligned with the extension's autofill mission, patching native browser network APIs on a third-party site to capture its internal API responses — without any explicit in-UI disclosure of the interception — is an aggressive technique. The data exfiltrated to lisstify.com (image URL → shipping charge mappings) belongs to Meesho's pricing system and is obtained without Meesho's consent.

background.js (Line 1526)
if (msg.action === "inject_transfer_interceptor") {  const tabId = _sender?.tab?.id;  ...  chrome.scripting.executeScript({    target: {      tabId    },    world: "MAIN",    func: function() {      ...      var _origFetch = window.fetch;      window.fetch = async function() {        var res = await _origFetch.apply(this, args);        if (url.includes("getTransferPrice")) {          res.clone().json().then(function(d) {            window.postMessage({              __listify: "transferPrice",              data: d            }, "*");          });        }        return res;      };      XMLHttpRequest.prototype.open = function(method, url) {        this.__listifyUrl = url || "";...      };      XMLHttpRequest.prototype.send = function() {        if (self.__listifyUrl && self.__listifyUrl.includes("getTransferPrice")) {          self.addEventListener("load", function() {            var d = JSON.parse(self.responseText);            window.postMessage({              __listify: "transferPrice",              data: d            }, "*");          });        }      };    },  })

By severity

Critical0
High1
Medium1
Low0

Versions scanned

Showing 1 of 20 scanned versions with more than one unique finding. Counts are unique findings that include each version.

Extension VersionCode Review Findings
1.3.52

Files with findings

2 distinct paths — top paths by unique finding count:

  • background.js1
  • manifest.json1
S.No.
Category
Severity
File
Summary
Found in Version
1Other
high
manifest.json (line 11)The bundled manifest declares 7 permissions (including unlimitedStorage and declarativeNetRequest) plus 8 host_permissions covering two major e-commerce supplier panels, two localhost dev URLs, a legacy backend URL, a…
2Network Interception
medium
background.js (line 1526)The extension injects itself into the Meesho supplier panel's MAIN world (bypassing CSP) and monkey-patches both `window.fetch` and `XMLHttpRequest.prototype` to silently intercept Meesho's internal `getTransferPrice`…
URLs
79
IPv4
1
IPv6
0

URLs

View the external URLs this extension communicates with to understand its network activity and data interactions.

Gain full insight into all external connections.

Upgrade for full visibility.

lisstify.com/*https://lisstify.com/*
localhost/*http://localhost:3000/*
localhost/*http://localhost/*
messho-images.picckie.com/generationshttps://messho-images.picckie.com/generations?userId=${encodeURIComponent(userId
listify-backend-q3md.onrender.com-https://listify-backend-q3md.onrender.com
localhost-http://localhost:4009
lisstify.com-https://lisstify.com
localhost-http://localhost:3000
www.w3.org/2000/svghttp://www.w3.org/2000/svg
sheetjs.com-http://sheetjs.com
Showing 1 to 10 of 80 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

127.0.0.1
IPv4
-
Showing 1 to 10 of 20 rows
Rows per page:

Code Diff

Compare extension code between any two versions.

0 changed files (scanned top 25 shared text files)

No comparable text files found between these versions.

Browse and explore files within this extension package

Gain full insight into all external connections.

Upgrade for full visibility.