Jump to content

ArcticFoxie/NotHereToPlayGames -- 360Chrome v13.5.1030 Redux


Recommended Posts


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.

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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...