kiến thức Tổng hợp những addon chất cho Firefox / Chromium

Tại do stremio nó tự cập nhập nên ghi đè vào đó, mình backup nó ra chỗ khác chạy riêng luôn.

Bật chế độ tự động tìm sub lên rồi Download Sub sau đó Watch on MPV là bao ngọt nước :D https://streamable.com/hbk1y7

Có cái này chả cần đi đâu xem phim nữa.
cái này mà có bộ loa 5.1 thì xem khác gì ngoài rạp mấy đâu
RToqS1n.png
fHTsxN9.png
 
Đây là bản mod Premium của iMacros, trước mình từng hướng dẫn cách mod ở đây: https://voz.vn/t/tong-hop-nhung-addon-chat-cho-firefox-pc-mobile.682181/post-22806831

iMacros thì dù đã ngưng phát triển nhưng nó là một addon rất hữu ích, hỗ trợ tự động hóa trang web, ví dụ đăng nhập hàng loạt, điền hàng loạt, mở hàng loạt, lấy dữ liệu bảng hàng loạt...

Nói chung là upload lại cho những bạn có nhu cầu kèm hướng dẫn, chứ cái này không thể cho lên #1 được vì nó là trả phí, đã ngưng phát triển và là mã nguồn đóng.

Bởi đây là addon đã mod lại tương tự như FastForward hay Multi-Threaded Download Manager, các bạn cần dùng Firefox Nightly hoặc Tete009 và vào about:config chỉnh như sau mới cài được:

xpinstall.signatures.requiredfalse

Tete009 (là Firefox stable nhưng cài được như Nightly): Các bản mod của Firefox được biên dịch dựa trên các tập lệnh tối ưu tăng tốc xử lý
Nightly: https://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/

Sau này có giải pháp addon thay thế (phải là mã mở và vẫn đang được phát triển) mình sẽ cho lên #1.
 

Attachments

  • imacros_for_firefox-10.1.0.1485-premium.zip
    545.8 KB · Views: 40
Last edited:
Code mới không bị che mất 3 gạch, hàng ngon bá xờ cháy :love:

Đã cập nhập lại bài Biến giao diện Sidebery thành ẩn/hiện giữ lại icon trang web y như Vertical Tab của Edge

userChrome.css

JavaScript:
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/hide_tabs_toolbar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */

/* Hides tabs toolbar */
/* For OSX use hide_tabs_toolbar_osx.css instead */

/* Note, if you have either native titlebar or menubar enabled, then you don't really need this style.
 * In those cases you can just use: #TabsToolbar{ visibility: collapse !important }
 */

/* IMPORTANT */
/*
Get window_control_placeholder_support.css
Window controls will be all wrong without it
*/

:root[tabsintitlebar]{ --uc-toolbar-height: 40px; }
:root[tabsintitlebar][uidensity="compact"]{ --uc-toolbar-height: 32px }

#TabsToolbar{ visibility: collapse !important }

:root[tabsintitlebar="true"] #nav-bar{
  padding-right: calc(138px + var(--window-drag-space-width,0px));
  padding-left: var(--window-drag-space-width,0px)
}

:root[sizemode="fullscreen"] #TabsToolbar > :is(#window-controls,.titlebar-buttonbox-container){
  visibility: visible !important;
  z-index: 2;
}

:root:not([inFullscreen]) #nav-bar{
  margin-top: calc(0px - var(--uc-toolbar-height,0px));
}

:root[tabsintitlebar] #toolbar-menubar[autohide="true"]{
  min-height: unset !important;
  height: var(--uc-toolbar-height,0px) !important;
  position: relative;
}

#toolbar-menubar[autohide="false"]{
  margin-bottom: var(--uc-toolbar-height,0px)
}

:root[tabsintitlebar] #toolbar-menubar[autohide="true"] #main-menubar{
  -moz-box-flex: 1; /* Fx < 112 compatibility */
  flex-grow: 1;
  -moz-box-align: stretch; /* Fx < 112 compatibility */
  align-items: stretch;
  background-color: var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor);
  background-clip: padding-box;
  border-right: 30px solid transparent;
  border-image: linear-gradient(to left, transparent, var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor) 30px) 20 / 30px
}

#toolbar-menubar:not([inactive]){ z-index: 2 }
#toolbar-menubar[autohide="true"][inactive] > #menubar-items {
  opacity: 0;
  pointer-events: none;
  margin-left: var(--uc-window-drag-space-pre,0px)
}

#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar-header {
  visibility: collapse;
}
 
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_sidebar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
 
/* Show sidebar only when the cursor is over it  */
/* The border controlling sidebar width will be removed so you'll need to modify these values to change width */
 
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  --uc-sidebar-width: 48px !important;
  --uc-sidebar-hover-width: 250px;
  --uc-autohide-sidebar-delay: 300ms; /* Wait 0.3s before hiding sidebar */
  position: relative;
  min-width: var(--uc-sidebar-width) !important;
  width: var(--uc-sidebar-width) !important;
  max-width: var(--uc-sidebar-width) !important;
  z-index:1;
}
 
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] > #sidebar-splitter {
  display: none
}
 
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] > #sidebar {
  transition: min-width 115ms linear var(--uc-autohide-sidebar-delay) !important;
  min-width: var(--uc-sidebar-width) !important;
  will-change: min-width;
}
 
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover > #sidebar{
  min-width: var(--uc-sidebar-hover-width) !important;
  transition-delay: 0ms !important
}
 
/* Add sidebar divider and give it background */
 
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] > #sidebar,
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] > #sidebar-header {
  background-color: var(--toolbar-bgcolor) !important;
/*  border-inline: 1px solid var(--sidebar-border-color) !important;*/
  border-inline: 1px solid var(--chrome-content-separator-color) !important;
  border-inline-width: 0px 1px;
}
#sidebar-box[positionend]{
  direction: rtl
}
#sidebar-box[positionend] > *{
  direction: ltr
}
 
#sidebar-box[positionend]:-moz-locale-dir(rtl){
  direction: ltr
}
#sidebar-box[positionend]:-moz-locale-dir(rtl) > *{
  direction: rtl
}

View attachment 1869469
mình vẫn bị bác ơi, có cách nào xóa luôn 3 cái nút đó luôn không
 
mình vẫn bị bác ơi, có cách nào xóa luôn 3 cái nút đó luôn không
Phang luôn thế này cho máu chiến :D

CSS:
.titlebar-buttonbox-container {
display: none!important;
}

Nhớ xóa đoạn:
Code:
:root[tabsintitlebar="true"] #nav-bar{
  padding-right: calc(138px + var(--window-drag-space-width,0px));
  padding-left: var(--window-drag-space-width,0px)
}

1685756443042.png
 
@toi la gay :sosad: hôm trước có bác hỏi cái trang phim1080.in ấy link xem trên mpv, em cũng mày mò thử mà bật devtool lên cái nó nhảy luôn qua debugger rồi dừng hẳn trang web, em thử view-source rồi mà chưa thấy gì, bác có cao kiến gì với những vụ thế này không ạ
ari1aOV.png
 
Phang luôn thế này cho máu chiến :D

CSS:
.titlebar-buttonbox-container {
display: none!important;
}

Nhớ xóa đoạn:
Code:
:root[tabsintitlebar="true"] #nav-bar{
  padding-right: calc(138px + var(--window-drag-space-width,0px));
  padding-left: var(--window-drag-space-width,0px)
}

BÁC ƠI EM LÀM THEO HƯỚNG DẪN XEM STREMIO TỪ WEB MÀ KHÔNG CHẠY MPV ĐƯỢC
Screenshot 2023-06-03 103459.png
 
Back
Top