EditThisCookie

ID: fngmhnnpilhplaeedifhccceomclgfbg

Could be malicious

Supported Languages

🇸🇦Arabic
🇧🇷Brazilian Portuguese
🇨🇳Chinese (Simplified)
🇹🇼Chinese (Traditional)
🇨🇿Czech
🇩🇰Danish
🇳🇱Dutch
🇺🇸English
🇪🇪Estonian
🇫🇮Finnish
🇫🇷French
🇩🇪German
🇬🇷Greek
🇮🇱Hebrew
🇭🇺Hungarian
🇮🇩Indonesian
🇮🇹Italian
🇯🇵Japanese
🇰🇷Korean
🇱🇹Lithuanian
🇲🇾Malay
🇳🇴Norwegian
🇮🇷Persian
🇵🇱Polish
🇵🇹Portuguese
🇷🇴Romanian
🇷🇺Russian
🇷🇸Serbian
🇸🇰Slovak
🇪🇸Spanish
🇸🇪Swedish
🇮🇳Tamil
🇹🇷Turkish
🇺🇦Ukrainian
🇻🇳Vietnamese

Extension Info & Metadata

Status
Removed
Version
1.6
Size
1.35 MB
Rating
4.4/5
Reviews
11,442
Users
2,000,000
Type
Extension
Updated
Aug 14, 2024
Category
Productivity Developer
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Trusted
Author
https://editthiscookie.comView Profile
Country
GB
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
Yes
Mailbox exists
Yes
Address
Ridgdale Street London E32TW GB
Website
Visit
Total Extensions
1
Active
0
Obsolete
1
Listed
1
Unlisted
0
Total Users
2,000,000

EditThisCookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!

The first and best cookie manager for Google Chrome. ★ Edit, delete, create cookies ★ Make them read-only ★ Block them (create filters) ★ Export to JSON, Netscape cookie file (perfect for wget and curl), Perl::LPW ★ Import from JSON ★ Limit the maximum expiration date of any cookie ★ Improve the performance, remove old ones ★ Import a cookies.txt file

Item
Type
Severity
Description
<all_urls>
Permission
Critical
This permission grants access to all websites without restriction. Rated High because it can access any web content, monitor all web activity, and potentially steal sensitive data across all sites.
webRequest
Permission
Critical
This permission enables the extension to monitor and analyze all web requests made by the browser. Rated Critical because it can observe all network traffic including sensitive data, track browsing behavior, and gather authentication tokens.
webRequestBlocking
Permission
Critical
This permission allows the extension to intercept, modify, or block any web request in real-time before it reaches its destination. Rated Critical because it can modify sensitive data (like passwords, credit cards) before encryption, redirect traffic to malicious sites, or block security updates.
Dangerous Permission Combination
Risk Factor
Critical
This extension can intercept, modify, and block web requests in real-time.
cookies
Permission
High
This permission provides full access to read and modify browser cookies. Rated High because it can steal session tokens, modify authentication cookies, and compromise accounts across websites.
clipboardWrite
Permission
High
This permission allows modification of clipboard content. Rated High because it can inject malicious content into the clipboard, modify copied passwords, and manipulate copied data.
Contextual Risk Factors
Risk Factor
High
The following context increases the overall risk:• 15% increase: Older manifest version lacks modern security controls
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.
Older Manifest Version
Risk Factor
Medium
This extension uses Manifest Version 2
contextMenus
Permission
Low
This permission adds items to browser context menus. Rated Medium because it only modifies right-click menus without access to page content.
notifications
Permission
Low
This permission displays system notifications. Rated Low because it can only show user-visible notifications without accessing system data.

A blocking `webRequest.onHeadersReceived` listener intercepts ALL HTTP responses across all URLs and reads raw `Set-Cookie` header values — including cookie names, values, and domains — before the browser processes them. The listener is registered with `blocking`, `responseHeaders`, and `extraHeaders` flags on `<all_urls>`, giving the extension visibility into every cookie being set by every website the user visits. Combined with `webRequestBlocking`, it can silently suppress any cookie from any response without user notification.

js/background.js (Line 111)
chrome.webRequest.onHeadersReceived.addListener(    function(details) {      if (details.responseHeaders !== undefined) {        headersToForward = [];        headersChanged = false;        for (var i = 0; i < details.responseHeaders.length; i++) {          cH = details.responseHeaders[i];          if (cH.name.toUpperCase() == "SET-COOKIE") {            fields = cH.value.split(';');            var cookieName = undefined;            var cookieDomain = undefined;            var cookieValue = undefined;            if (fields.length > 0) {              cookieName = fields[0].split('=')[0]              cookieValue = fields[0].split('=')[1]            }            for (var x = 1; x < fields.length; x++) {              if (fields[x].split('=')[0].trim() == "domain") {                cookieDomain = fields[x].split('=')[1];                break;              }            }

The `webRequest` listener is registered with `blocking` + `extraHeaders` on `<all_urls>`, granting access to otherwise-protected headers including `Set-Cookie` for every HTTP/HTTPS request in the browser. The `extraHeaders` flag specifically bypasses Chrome's default header protection. This allows the extension to read and strip cookies from responses for any site.

js/background.js (Line 158)
{  urls: ["<all_urls>"]},["blocking", "responseHeaders", "extraHeaders"]);

The extension dynamically injects an external script from `https://ssl.google-analytics.com/ga.js` into the popup page at runtime using `document.createElement('script')`. This constitutes remote code loading — any compromise or modification of the hosted `ga.js` would execute arbitrary JavaScript in the extension popup context, which has full `chrome.cookies` access over all domains for 2 million users. There is no subresource integrity check.

js/ga.js (Line 1)
var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-33054271-5']);_gaq.push(['_setSessionCookieTimeout', 0]);_gaq.push(['_trackPageview']);(function() {  var ga = document.createElement('script');  ga.type = 'text/javascript';  ga.async = true;  ga.src = 'https://ssl.google-analytics.com/ga.js';  var s = document.getElementsByTagName('script')[0];  s.parentNode.insertBefore(ga, s);})();setInterval(function() {  _gaq.push(['_trackEvent', 'Heartbeat', 'Heartbeat']);}, 4 * 60 * 1000);

The popup HTML loads `ga.js` which dynamically fetches and executes a remote Google Analytics script in the same execution context as the popup, which has access to `chrome.cookies`, `<all_urls>`, and all other privileged extension APIs. Any attacker who could modify or substitute the remote GA endpoint would gain full access to all browser cookies across all sites via the extension's permissions. This is a critical privilege escalation path through a remote code loading vector.

popup.html (Line 19)
<script type="text/javascript" src="js/ga.js"></script><script type="text/javascript" src="/js/cookie_helpers.js"></script><script type="text/javascript" src="/js/utils.js"></script><script type="text/javascript" src="/js/data.js"></script><script type="text/javascript" src="js/popup.js"></script>

The background devtools page retrieves all cookies for an inspected tab URL and relays the full cookie array — including session tokens, HttpOnly cookies, and secure cookies — via a port message to the devtools panel script. The full set of cookie credentials for any inspected tab is collected in bulk and passed to a secondary execution context, creating a high-risk aggregation point for credential data.

devtools/background-devtools.js (Line 36)
function getAll(port, message) {  chrome.tabs.get(message.tabId, function(tab) {    var url = tab.url;    console.log("Looking for cookies on: " + url);    chrome.cookies.getAll({      url: url    }, function(cks) {      console.log("I have " + cks.length + " cookies");      port.postMessage({        action: "getall",        url: url,        cks: cks      });    });  });}

The background page accepts arbitrary cookie modification commands from the devtools panel via message passing — deleting existing cookies and setting new ones for any URL — with no authentication or origin check beyond the port connection. If the devtools panel were compromised (e.g., via XSS in panel-rendered content), an attacker could overwrite session cookies for any site, enabling session fixation or cookie injection attacks.

devtools/background-devtools.js (Line 13)
} else if (action === "submitCookie") {  var cookie = message.cookie;  var origName = message.origName;  deleteCookie(cookie.url, origName, cookie.storeId);  chrome.cookies.set(cookie);  issueRefresh(port);}

The function calls `chrome.cookies.getAll({})` with an empty filter, which retrieves ALL cookies across ALL domains in the browser, then iterates and modifies every cookie's expiration date. This is the broadest possible cookie enumeration — a complete snapshot of every session token, authentication credential, and tracking cookie across all sites — obtained and processed in a single operation.

options_pages/user_preferences.js (Line 222)
chrome.cookies.getAll({}, function(cookies) {  totalCookies = cookies.length;  cookiesShortened = 0;  $("span", "#shortenProgress").text("0 / " + totalCookies);  shortenCookies(cookies, setOptions);});function shortenCookies(cookies, callback) {  if (cookies.length <= 0) {    data.nCookiesShortened += cookiesShortened;    $("#shortenProgress").fadeOut(function() {      if (callback != undefined)        callback();    });    return;  }  $("span", "#shortenProgress").text((totalCookies - cookies.length) + " / " + totalCookies);  var cookie = cookies.pop();  var maxAllowedExpiration = Math.round((new Date).getTime() / 1000) + (preferences.maxCookieAge * preferences.maxCookieAgeType);  if (cookie.expirationDate != undefined && cookie.expirationDate > maxAllowedExpiration) {    var newCookie = cookieForCreationFromFullCookie(cookie);    if (!cookie.session)      newCookie.expirationDate = maxAllowedExpiration;    chrome.cookies.set(newCookie, function() {      shortenCookies(cookies, callback)    });    cookiesShortened++;  } else    shortenCookies(cookies, callback);}

The `chrome.cookies.onChanged` listener captures the name, domain, and value of every cookie change event across all domains in real time. The extension has unrestricted access to all cookie values — including session tokens and authentication cookies — for every website the user visits. This broad surveillance of all browser cookie activity is a substantial unauthorized data collection surface for 2 million users.

js/background.js (Line 46)
chrome.cookies.onChanged.addListener(function(changeInfo) {      var removed = changeInfo.removed;      var cookie = changeInfo.cookie;      var cause = changeInfo.cause;      var name = cookie.name;      var domain = cookie.domain;      var value = cookie.value;      if (cause === "expired" || cause === "evicted")        return;      for (var i = 0; i < data.readOnly.length; i++) {        var currentRORule = data.readOnly[i];        if (compareCookies(cookie, currentRORule)) {          if (removed) {            chrome.cookies.get({                  'url': "http" + ((currentRORule.secure) ? "s" : "") + "://" + currentRORule.domain + currentRORule.path,                  'name': currentRORule.name,                  'storeId': currentRORule.storeId                }, function(currentCookie) {

The extension silently tracks every popup open as a page view and fires a heartbeat telemetry event every 4 minutes to Google Analytics account `UA-33054271-5`, allowing the extension operator to monitor the precise usage patterns of 2 million users. No consent mechanism or disclosure is present, and the tracking occurs in a privileged context alongside sensitive cookie data.

js/ga.js (Line 1)
var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-33054271-5']);_gaq.push(['_setSessionCookieTimeout', 0]);_gaq.push(['_trackPageview']);setInterval(function() {  _gaq.push(['_trackEvent', 'Heartbeat', 'Heartbeat']);}, 4 * 60 * 1000);

The `importCookies` function accepts arbitrary JSON text pasted by the user and directly calls `chrome.cookies.set()` on each parsed cookie object without domain validation or sanitization. A crafted JSON payload could inject cookies for any domain, potentially enabling session fixation attacks against third-party sites or overwriting security-sensitive cookies (e.g., `__Host-` prefixed cookies, SameSite attributes).

js/popup.js (Line 309)
function importCookies() {  var nCookiesImportedThisTime = 0;  var text = $(".value", "#pasteCookie").val();  try {    var cookieArray = $.parseJSON(text);    if (Object.prototype.toString.apply(cookieArray) === "[object Object]")      cookieArray = [cookieArray];    for (var i = 0; i < cookieArray.length; i++) {      try {        var cJSON = cookieArray[i];        var cookie = cookieForCreationFromFullCookie(cJSON);        chrome.cookies.set(cookie);        nCookiesImportedThisTime++;      } catch (e) {

The `element` variable is set directly from the `page` URL query parameter or from `localStorage` without any whitelist validation before being concatenated into `location.href`. An attacker who can control the URL parameter could redirect to unintended paths within the extension's origin, potentially loading attacker-influenced content in the privileged extension context.

js/options_main_page.js (Line 1)
var panel = JSON.parse(localStorage.getItem("option_panel"));var arguments = getUrlVars();var element;if (panel === "null" || panel === null || panel === undefined) {  element = "support";} else {  element = panel;}if (arguments.page !== undefined) {  element = arguments.page;}location.href = "/options_pages/" + element + ".html";

The `localizePage` function inserts translated strings via jQuery's `.html()` setter — equivalent to `innerHTML` assignment — without sanitization. If a locale message file were tampered with (the extension bundles 40+ locale files), translated content would be injected unsanitized into the DOM of privileged extension pages, creating a stored XSS vector that executes in the extension's elevated permission context.

lib/i18n_translator.js (Line 7)
function localizePage() {  $('[i18n]:not(.i18n-replaced)').each(function() {    $(this).html($(this).html() + translate($(this).attr('i18n'), $(this).attr('i18n_argument')));    $(this).addClass('i18n-replaced');  });  $('[i18n_value]:not(.i18n-replaced)').each(function() {    $(this).val(translate($(this).attr('i18n_value')));    $(this).addClass('i18n-replaced');  });  $('[i18n_title]:not(.i18n-replaced)').each(function() {    $(this).attr('title', translate($(this).attr('i18n_title')));    $(this).addClass('i18n-replaced');  });  $('[i18n_placeholder]:not(.i18n-replaced)').each(function() {    $(this).attr('placeholder', translate($(this).attr('i18n_placeholder')) + $(this).attr('placeholder'));    $(this).addClass('i18n-replaced');  });

User-supplied filter rule strings (domain, name, value) are passed directly into `new RegExp()` without sanitization or escaping. This function is called inside the blocking `webRequest` handler, so a catastrophically backtracking regex (ReDoS payload) injected via a filter rule could freeze the browser's network stack — effectively a denial-of-service against all network activity.

js/utils.js (Line 106)
function filterMatchesCookie(rule, name, domain, value) {  var ruleDomainReg = new RegExp(rule.domain);  var ruleNameReg = new RegExp(rule.name);  var ruleValueReg = new RegExp(rule.value);  if (rule.domain !== undefined && domain.match(ruleDomainReg) === null) {    return false;  }  if (rule.name !== undefined && name.match(ruleNameReg) === null) {    return false;  }  if (rule.value !== undefined && value.match(ruleValueReg) === null) {    return false;  }  return true;}

The `cookiesToString` functions serialize full cookie objects — including name, value, domain, path, secure flag, httpOnly flag, and expiration — into clipboard-ready strings. The variable `cookie` is assigned without `var`/`let`/`const` (implicit global). Full serialization of all cookie attributes including sensitive session token values into a copyable string represents credential exposure, particularly if this function can be triggered without sufficiently deliberate user action.

js/cookie_helpers.js (Line 140)
"json": function(cookies, url) {  var string = "";  string += "[\n";  for (var i = 0; i < cookies.length; i++) {    cookie = cookies[i];    cookie.id = i + 1;    string += JSON.stringify(cookie, null, 4);    if (i < cookies.length - 1)      string += ",\n";  }  string += "\n]";  return string;},

By severity

Critical0
High18
Medium15
Low5

Versions scanned

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

Extension VersionCode Review Findings
1.6.24
1.6.117
1.614
1.5.03

Files with findings

14 distinct paths — top paths by unique finding count:

  • js/ga.js9
  • js/background.js8
  • js/utils.js3
  • devtools/background-devtools.js2
  • devtools/panel.js2
  • js/cookie_helpers.js2
  • js/options_main_page.js2
  • lib/i18n_translator.js2
S.No.
Category
Severity
File
Summary
Found in Version
1Code Injection
high
lib/jquery.jeditable.js (line 368)The select content handler uses eval() to parse a JSON string returned from a server-controlled loadurl endpoint. Any server response or attacker-influenced content reaching this code path is executed as arbitrary Jav…
2Credential Theft
high
js/utils.js (line 18)When a block rule is added, chrome.cookies.getAll({}) is called with an empty filter, which retrieves every cookie from every domain in every cookie store. This is a broad credential sweep — every session token, auth …
3Credential Theft
high
devtools/background-devtools.js (line 36)The background devtools page retrieves all cookies for an inspected tab URL and relays the full cookie array — including session tokens, HttpOnly cookies, and secure cookies — via a port message to the devtools panel …
4Credential Theft
high
devtools/background-devtools.js (line 13)The background page accepts arbitrary cookie modification commands from the devtools panel via message passing — deleting existing cookies and setting new ones for any URL — with no authentication or origin check beyo…
5Credential Theft
high
options_pages/user_preferences.js (line 222)The function calls `chrome.cookies.getAll({})` with an empty filter, which retrieves ALL cookies across ALL domains in the browser, then iterates and modifies every cookie's expiration date. This is the broadest possi…
6Data Exfiltration
high
lib/jquery.jeditable.js (line 266)When a cookie field form is submitted via jEditable, it POSTs cookie data (including name, value, domain) to settings.target and writes the raw server response to self.innerHTML without sanitization. The target URL is…
7Network Interception
high
js/background.js (line 111)The extension installs a blocking webRequest listener on all URLs (<all_urls>) with extraHeaders access, meaning it intercepts every single HTTP and HTTPS response the browser receives across all websites. The listene…
8Network Interception
high
js/background.js (line 111)A blocking webRequest listener intercepts all HTTP responses across every URL (<all_urls>) and can strip Set-Cookie response headers before they reach the browser. The blocking + extraHeaders flags grant the ability t…
9Network Interception
high
js/background.js (line 111)A blocking `webRequest.onHeadersReceived` listener intercepts ALL HTTP responses across all URLs and reads raw `Set-Cookie` header values — including cookie names, values, and domains — before the browser processes th…
10Network Interception
high
js/background.js (line 158)The `webRequest` listener is registered with `blocking` + `extraHeaders` on `<all_urls>`, granting access to otherwise-protected headers including `Set-Cookie` for every HTTP/HTTPS request in the browser. The `extraHe…
11Remote Code Loading
high
js/ga.js (line 6)The background page dynamically loads and executes a remote JavaScript file from ssl.google-analytics.com at runtime. The background page runs with elevated Chrome extension privileges including access to chrome.cooki…
12Remote Code Loading
high
js/ga.js (line 6)The GA analytics script is fetched and executed at runtime from an external server by dynamically injecting a script tag into the background page. The actual code executed is not contained within the extension package…
13Remote Code Loading
high
js/ga.js (line 1)The extension dynamically injects an external script from `https://ssl.google-analytics.com/ga.js` into the popup page at runtime using `document.createElement('script')`. This constitutes remote code loading — any co…
14Remote Code Loading
high
popup.html (line 19)The popup HTML loads `ga.js` which dynamically fetches and executes a remote Google Analytics script in the same execution context as the popup, which has access to `chrome.cookies`, `<all_urls>`, and all other privil…
15Remote Code Loading
high
js/ga.js (line 1)The extension dynamically injects a remote script from Google Analytics into its background context. Remote script loading is a high-risk pattern in extensions because the fetched code executes inside a privileged ext…
16Tracking
high
js/ga.js (line 1)This file is loaded as the last entry in the background page script array (manifest.json lines 23-31), meaning it runs persistently in a privileged extension context with access to the cookies API. It dynamically inje…
17Unauthorized Data Collection
high
js/ga.js (line 1)Google Analytics is loaded dynamically in the background page — a context with no UI and no user-initiated pageviews — and fires a 'Heartbeat' event every 4 minutes as a persistent beacon confirming the extension is a…
18Unauthorized Data Collection
high
devtools/panel.js (line 4)A persistent message channel is established between the devtools panel and the background page on load, immediately requesting all cookies for the inspected tab. The devtools panel operates in a privileged context wit…
19Code Injection
medium
lib/i18n_translator.js (line 7)The localizePage function uses jQuery's .html() to inject translated strings and i18n_argument attribute values into the DOM without sanitization. If any translated message string or attribute value contains HTML mark…
20Code Injection
medium
js/options_main_page.js (line 1)The `element` variable is set directly from the `page` URL query parameter or from `localStorage` without any whitelist validation before being concatenated into `location.href`. An attacker who can control the URL pa…
21Code Injection
medium
lib/i18n_translator.js (line 7)The `localizePage` function inserts translated strings via jQuery's `.html()` setter — equivalent to `innerHTML` assignment — without sanitization. If a locale message file were tampered with (the extension bundles 40…
22Credential Theft
medium
js/popup.js (line 309)The `importCookies` function accepts arbitrary JSON text pasted by the user and directly calls `chrome.cookies.set()` on each parsed cookie object without domain validation or sanitization. A crafted JSON payload coul…
23Other
medium
js/options_main_page.js (line 1)The options page reads the 'page' parameter directly from the URL query string via getUrlVars() and uses it unsanitized to construct a redirect target via location.href. This is an open redirect vulnerability — a mali…
24Other
medium
options_pages/options_page_chooser.js (line 6)The options page opens URLs to editthiscookie.com over plain HTTP (not HTTPS), exposing users to MITM attacks on those navigations. The id attribute from DOM elements is also directly interpolated into a navigation pa…
25Other
medium
js/utils.js (line 106)User-supplied filter strings (domain, name, value) are passed directly to new RegExp() without sanitization, creating a ReDoS (Regular Expression Denial of Service) vulnerability. A pathological regex in a cookie valu…
26Other
medium
js/utils.js (line 106)User-supplied filter rule strings (domain, name, value) are passed directly into `new RegExp()` without sanitization or escaping. This function is called inside the blocking `webRequest` handler, so a catastrophically…
27Tracking
medium
js/ga.js (line 12)A heartbeat event fires every 4 minutes from the background page to Google Analytics, continuously reporting to a third-party server that the user's browser is open and the extension is active. This leaks behavioral/p…
28Tracking
medium
js/ga.js (line 1)The extension silently tracks every popup open as a page view and fires a heartbeat telemetry event every 4 minutes to Google Analytics account `UA-33054271-5`, allowing the extension operator to monitor the precise u…
29Tracking
medium
js/ga.js (line 1)This code enables telemetry by sending a pageview and a recurring 'Heartbeat' event every 4 minutes to a Google Analytics property. It does not appear to send cookie contents directly, but it does implement persistent…
30Unauthorized Data Collection
medium
js/background.js (line 46)The background page registers a persistent listener on chrome.cookies.onChanged that fires for every cookie set or removed across all websites the user visits. On each event, it extracts the cookie name, domain, and f…
31Unauthorized Data Collection
medium
js/background.js (line 46)A global chrome.cookies.onChanged listener fires on every cookie change across all browsing contexts, reading the cookie name, domain, and value for each event. While ostensibly for a read-only cookie protection featu…
32Unauthorized Data Collection
medium
devtools/panel.js (line 34)The panel directly calls chrome.cookies.getAll() for any URL, retrieving all cookies associated with that origin including session tokens and auth cookies. Retrieved cookies are stored in module-level variables (tabUR…
33Unauthorized Data Collection
medium
js/background.js (line 46)The `chrome.cookies.onChanged` listener captures the name, domain, and value of every cookie change event across all domains in real time. The extension has unrestricted access to all cookie values — including session…
34Credential Theft
low
js/cookie_helpers.js (line 140)The cookie serialization functions (json, semicolonPairs, Netscape format) use an implicitly global cookie variable (no var/let/const), meaning the last-processed full cookie object — including its value, httpOnly fla…
35Credential Theft
low
js/cookie_helpers.js (line 140)The `cookiesToString` functions serialize full cookie objects — including name, value, domain, path, secure flag, httpOnly flag, and expiration — into clipboard-ready strings. The variable `cookie` is assigned without…
36Other
low
popup.html (line 271)The help button in the popup links to an external HTTP (not HTTPS) URL opened from the privileged extension context. Plain HTTP navigations from extensions are susceptible to MITM interception and could be used to ser…
37Other
low
options_pages/support.html (line 45)The support page references getlocalization.com over plain HTTP. This third-party service appears defunct and the domain may have been re-registered by an unknown party. Links opened via chrome.tabs.create to plain HT…
38Phishing
low
js/background.js (line 21)On install and update, the extension opens external pages over plain HTTP rather than HTTPS. That is not direct malware behavior by itself, but it is a suspicious legacy pattern because the destination content could b…
URLs
47
IPv4
0
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.

fontawesome.io-http://fontawesome.io
fontawesome.io/licensehttp://fontawesome.io/license
www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtdhttp://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd
www.w3.org/2000/svghttp://www.w3.org/2000/svg
jqueryui.com-http://jqueryui.com
jqueryui.com/themeroller/http://jqueryui.com/themeroller/?scope=&folderName=smoothness&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fcefa1&bgImgOpacityHighlight=55&bgTextureHighlight=glass&bgColorHighlight=fbf9ee&iconColorActive=454545&fcActive=212121&borderColorActive=aaaaaa&bgImgOpacityActive=65&bgTextureActive=glass&bgColorActive=ffffff&iconColorHover=454545&fcHover=212121&borderColorHover=999999&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=dadada&iconColorDefault=888888&fcDefault=555555&borderColorDefault=d3d3d3&bgImgOpacityDefault=75&bgTextureDefault=glass&bgColorDefault=e6e6e6&iconColorContent=222222&fcContent=222222&borderColorContent=aaaaaa&bgImgOpacityContent=75&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=222222&fcHeader=222222&borderColorHeader=aaaaaa&bgImgOpacityHeader=75&bgTextureHeader=highlight_soft&bgColorHeader=cccccc&cornerRadius=4px&fsDefault=1.1em&fwDefault=normal&ffDefault=Verdana%2CArial%2Csans-serif
pixelmatrixdesign.com/uniform/http://pixelmatrixdesign.com/uniform/
pixelmatrixdesign.com/uniform/themer.htmlhttp://pixelmatrixdesign.com/uniform/themer.html
google.com-https://google.com
fsf.org-http://fsf.org/
Showing 1 to 10 of 50 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

No IP addresses found
Showing 1 to 6 of 10 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.