mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
Fixed panel appearance on some websites
Fixed pane opening on extension webstores pages
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
transition: .2s !important;
|
transition: .2s !important;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
color: black !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabsAside.pane
|
.tabsAside.pane
|
||||||
@@ -122,8 +123,11 @@
|
|||||||
|
|
||||||
.tabsAside.pane > section > h2
|
.tabsAside.pane > section > h2
|
||||||
{
|
{
|
||||||
|
color: inherit !important;
|
||||||
margin: 0px 40px !important;
|
margin: 0px 40px !important;
|
||||||
font-weight: normal !important;
|
font-weight: normal !important;
|
||||||
|
font-size: 1.5em !important;
|
||||||
|
line-height: normal !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Collection header */
|
/* Collection header */
|
||||||
|
|||||||
+3
-1
@@ -1,6 +1,8 @@
|
|||||||
chrome.browserAction.onClicked.addListener(function (tab)
|
chrome.browserAction.onClicked.addListener(function (tab)
|
||||||
{
|
{
|
||||||
if (tab.url.startsWith("http"))
|
if (tab.url.startsWith("http")
|
||||||
|
&& !tab.url.includes("chrome.google.com")
|
||||||
|
&& !tab.url.includes("microsoftedge.microsoft.com"))
|
||||||
{
|
{
|
||||||
chrome.tabs.insertCSS(
|
chrome.tabs.insertCSS(
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Tabs Aside",
|
"name": "Tabs Aside",
|
||||||
"version": "1.0",
|
"version": "1.1",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
|
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
|
||||||
"author": "Michael \"XFox\" Gordeev",
|
"author": "Michael \"XFox\" Gordeev",
|
||||||
|
|||||||
Reference in New Issue
Block a user