Jump to content

Recommended Posts

Posted

image.png.c283a3efeb95dc529111c4f02576b0c5.png

 

Nothing "against" newer versions.  I've technically never even tried the newer versions.

My philosophy is to never ever EVER allow any any ANY software to auto-update and manual updates only follow the principle of "if it ain't broke, DON'T FIX IT".


Posted

can this css be converted for use in violentmonkey?
----------------------------------------------------------------------------------
@-moz-document url-prefix(https://www.imdb.com/) {
  div[data-testid="video-aspect-ratio"] { 
    height: 360px !important;
  }
}
------------------------------------------------------------------------------------
it restores video display in imdb.

Posted (edited)

installed stylus and the code works as a test.
was hoping to learn if something like that is possible with javascript.

edit : installed the osprey 1.0.4 extension.

https://github.com/jackcdk/osprey
the imdb (mozilla import) css works fine with it and i like the clean interface.

Edited by rereser
Posted

thanks UCyborg.
have read that page before asking.
way to complicated for me.
i like the osprey extension.
so consider it solved.

Posted
18 hours ago, seven4ever said:

@NotHereToPlayGames

Had you time to look for new colored  title bar skins, I'm interested in neutral color one (ex light gray or blank) ?

It's not the answer you are wanting, lol.  I have not but I wouldn't call it forgotten either.

My preferred focus at the moment is bringing a "tab manager" function next to the min/max/restore/close title bar icons similar to that which is seen in Ungoogled Chromium.

 

Ungoogled Chromium v114:

image.png.128942171447cb524391fb5eab5708f4.png

 

 

I will likely not implement the "search tabs", not sure yet.  Easily done for Open Tabs, not sure of effect on Recently Closed.

The unfortunate side-effect is that 360Chrome's Extension Manager, Download Manager, Search Bar, Bookmark Menu, and Restore Closed Tabs are all effected just by implementing a "tab manager" function.

Ignore all the title bar icons to the left of the dropdown, those are window manager icons for shuffling programs around on five-monitor setup.

image.thumb.png.fcc8921b534dd9d4624a6f7502d77468.png

Posted
3 hours ago, Milkinis said:

ebay webstores content doesn't load anymore. any fix for this ? @rereser

screenshot-24.png

Works absolutely fine with 360 ver.13.5.1030, kindly provided to me by @Dixel

My Ebay is the Belgian one, I live in Belgium.

My ebay Belgium.png

Posted
10 minutes ago, Saxon said:

Works absolutely fine with 360 ver.13.5.1030

Working in my 13.5.1030 also.

No clue whose 360Chrome is pictured above Dixel's (which I have also but perhaps not up-to-date) - the "speedup" and "themes" icons in the lower right corner are none of my versions.

Posted
15 hours ago, Saxon said:

Works absolutely fine with 360 ver.13.5.1030, kindly provided to me by @Dixel

the main page loads as expected but when tapping on the categories button, the drop menu categories won't open up their content. it stucks on the annoying loading loop :wacko:

screenshot-23.png

Posted (edited)

You need to polyfill the Object.hasOwn function.

 

// ==UserScript==
// @name Inject Object.hasOwn() Polyfill [93]
// @version 0.0.1
// @match *://*/*
// @run-at document-start
// @grant none
// ==/UserScript==

if (!Object.hasOwn) {
  Object.defineProperty(Object, "hasOwn", {
    value: function (object, property) {
      if (object == null) {
        throw new TypeError("Cannot convert undefined or null to object")
      }
      return Object.prototype.hasOwnProperty.call(Object(object), property)
    },
    configurable: true,
    enumerable: false,
    writable: true
  })
}

Edited by NotHereToPlayGames

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...