Tools by TUNGMMO

ID: fbdmedmbnnfepoikhappohfccfgkhkld

Supported Languages

🇻🇳Vietnamese

Extension Info & Metadata

Status
Active
Version
1.0
Size
0.11 MB
Rating
5.0/5
Reviews
2
Users
4
Type
Extension
Updated
Apr 28, 2026
Category
Developer tools
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
No

Publisher Contextual Analysis

Author
vtung15062005View Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Total Extensions
2
Active
2
Obsolete
0
Listed
2
Unlisted
0
Total Users
4

Email Change History

1 change
Jun 13, 2025

Your Application Description

phần mềm online hỗ trợ sử dụng đa trang web hiện tại đã có chức năng chặn quảng cáo ko cần reload lại trang

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.
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.
https://youtube.com/*
Host
Medium
Host permission — access limited to this URL pattern.
https://*.youtube.com/*
Host
Medium
Host permission — access limited to this URL pattern.
http://127.0.0.1/*
Host
Medium
Host permission — access limited to this URL pattern.
http://localhost/*
Host
Medium
Host permission — access limited to this URL pattern.

The extension declares host permissions for http://127.0.0.1/* and http://localhost/* despite being a YouTube ad-blocking tool with no legitimate reason to communicate with localhost. These permissions allow the extension to make cross-origin requests to any locally running service, including local web servers, dev tools, or other installed software, enabling data exfiltration via a local proxy or interaction with locally running malware components.

manifest.json (Line 20)
{  "host_permissions": [    "https://youtube.com/*",    "https://*.youtube.com/*",    "http://127.0.0.1/*",    "http://localhost/*"  ]}

The internal extension settings page (index.html) contains an spm_prefix meta tag with value 333.1007, which is a Taobao/Alibaba SPM (Source Point Moment) affiliate tracking identifier used in Taobao and AliExpress web properties. Its presence in a Vietnamese YouTube tools extension strongly suggests the page template was lifted from an Alibaba e-commerce property, or the extension is designed to impersonate or ride Alibaba's affiliate network. The no-siteapp and no-transform Cache-Control directives also mirror exactly what Alibaba pages use to prevent mobile app interception — these have no meaningful purpose inside an extension page.

index.html (Line 8)
<meta name="renderer" content="webkit" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="spm_prefix" content="333.1007" /><meta name="referrer" content="no-referrer-when-downgrade" /><meta name="applicable-device" content="pc" /><meta http-equiv="Cache-Control" content="no-transform" /><meta http-equiv="Cache-Control" content="no-siteapp" />

A content_security_policy directive specifying 'unsafe-inline' for scripts has been embedded inside the content_scripts array entry, which is not a valid location for this directive in Manifest V3. While Chrome ignores it here, the attempt to declare unsafe-inline for extension pages signals an intent to execute inline scripts, which is a well-known vector for code injection attacks. If this CSP were to apply, it would permit dynamically constructed inline scripts with no integrity validation.

manifest.json (Line 21)
{  "content_scripts": [    {      "matches": [        "https://youtube.com/*",        "https://*.youtube.com/*"      ],      "js": [        "content.js"      ],      "content_security_policy": {        "extension_pages": "script-src 'self' 'unsafe-inline'; object-src 'self'"      }    }  ]}

The extension uses chrome.scripting.executeScript to inject a function directly into an active YouTube tab on user interaction. While the injected function (YTB_blockAD) appears benign, the pattern of dynamically injecting arbitrary JavaScript into privileged page contexts via the scripting API is a high-risk code injection vector. This capability could be trivially repurposed in a future update to inject credential harvesting, DOM modification, or data exfiltration code into YouTube sessions.

popup.js (Line 44)
if ($("#blockads").prop("checked")) {  chrome.scripting.executeScript({    target: {      tabId: tab.id    },    function: YTB_blockAD,  });}...function YTB_blockAD() {  (function() {    const defined = (v) => v !== null && v !== undefined;    const timeout = setInterval(() => {      const ad = [...document.querySelectorAll(".ad-showing")][0];      if (defined(ad)) {        const video = document.querySelector("video");        if (defined(video)) {          video.currentTime = video.duration;        }      }    }, 500);    return function() {      clearTimeout(timeout);    };  })();}

Both popup.html and index.html load Bootstrap CSS from an external CDN (cdn.jsdelivr.net) at runtime. Although an SRI integrity hash is provided, loading resources from external infrastructure inside an extension creates a dependency on third-party availability and trustworthiness. A compromised CDN or MITM at the CDN edge could serve a malicious stylesheet that exploits CSS-based data exfiltration techniques or loads additional content.

popup.html (Line 8)
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"  integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />

By severity

Critical0
High2
Medium2
Low1

Versions scanned

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

Extension VersionCode Review Findings
1.05

Files with findings

4 distinct paths — top paths by unique finding count:

  • manifest.json2
  • index.html1
  • popup.html1
  • popup.js1
S.No.
Category
Severity
File
Summary
Found in Version
1Tracking
high
index.html (line 8)The internal extension settings page (index.html) contains an spm_prefix meta tag with value 333.1007, which is a Taobao/Alibaba SPM (Source Point Moment) affiliate tracking identifier used in Taobao and AliExpress we…
2Unauthorized Data Collection
high
manifest.json (line 20)The extension declares host permissions for http://127.0.0.1/* and http://localhost/* despite being a YouTube ad-blocking tool with no legitimate reason to communicate with localhost. These permissions allow the exten…
3Code Injection
medium
manifest.json (line 21)A content_security_policy directive specifying 'unsafe-inline' for scripts has been embedded inside the content_scripts array entry, which is not a valid location for this directive in Manifest V3. While Chrome ignore…
4Code Injection
medium
popup.js (line 44)The extension uses chrome.scripting.executeScript to inject a function directly into an active YouTube tab on user interaction. While the injected function (YTB_blockAD) appears benign, the pattern of dynamically inje…
5Remote Code Loading
low
popup.html (line 8)Both popup.html and index.html load Bootstrap CSS from an external CDN (cdn.jsdelivr.net) at runtime. Although an SRI integrity hash is provided, loading resources from external infrastructure inside an extension crea…
URLs
8
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.

cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css
www.w3.org/2000/svghttp://www.w3.org/2000/svg
www.w3.org/1999/xlinkhttp://www.w3.org/1999/xlink
clients2.google.com/service/update2/crxhttps://clients2.google.com/service/update2/crx
youtube.com/*https://youtube.com/*
*.youtube.com/*https://*.youtube.com/*
127.0.0.1/*http://127.0.0.1/*
localhost/*http://localhost/*

Gain full insight into all external connections.

Upgrade for full visibility.

127.0.0.1
IPv4
-
Version
Size
Is Malicious
Findings
Permhash
1.0
Latest
0.11 MB
Malicious
5
Showing 1 to 1 of 10 rows
Rows per page:

Browse and explore files within this extension package

Gain full insight into all external connections.

Upgrade for full visibility.