Skip to content

Commit c6cda8c

Browse files
committed
Update README.MD to add Firefox version availability
1 parent fa85dbc commit c6cda8c

21 files changed

+707
-2
lines changed

README.MD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#### Outline HTML elements with a colorful border without affecting the layout to inspect the structure of websites.
99

1010
👉 Get it for Chrome: 🔗 [Chrome Webstore](https://chrome.google.com/webstore/detail/ihlgleabnhekkankfpfoafkobncbfcfo)
11+
👉 Get it for Firefox: Firefox version available but unstable.
1112

1213
Made by [maxontech](https://twitter.com/max_on_tech)
1314

File renamed without changes.
File renamed without changes.
File renamed without changes.

main/background.js renamed to chrome/background.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ chrome.runtime.onInstalled.addListener((object) => {
7575
for (let j = 0; j < t; j++) {
7676
currentTab = currentWindow.tabs[j];
7777
//console.log(currentTab);
78-
if (!currentTab.url.includes("chrome://") && !currentTab.url.includes("chrome-extension://") && !currentTab.url.includes("chrome.google.com")) {
78+
if (!currentTab.url.includes("chrome://") && !currentTab.url.includes("chrome-extension://") && !currentTab.url.includes("chrome.google.com") && !currentTab.url.includes("chromewebstore.google")) {
79+
7980
injectIntoTab(currentTab);
8081
}
8182
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

main/popup.html renamed to chrome/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ <h2 id="webframe-elements-text">Elements</h2>
8888
<div id="elementsContainer"></div>
8989
<br />
9090
<div style="text-align: center;">
91-
<a href="https://github.com/maxontech/outline-html-elements">GitHub</a>
91+
<a href="https://github.com/maxontech/outline-html-elements" target="_blank">GitHub</a>
9292
</div>
9393

9494
</div>
File renamed without changes.

0 commit comments

Comments
 (0)