Code Monkey home page Code Monkey logo

Comments (2)

kkkrist avatar kkkrist commented on June 5, 2024

Thanks for reporting! I'm currently very busy, will look into where the leading zeros get eaten once I got more time.

from chromium-notifier.

kkkrist avatar kkkrist commented on June 5, 2024

So the thing is, while said extension does indeed specify its version with leading zeros in its manifest.json:

{
"update_url": "https://clients2.google.com/service/update2/crx",

  "name": "Bookmarks Menu",
  "version": "2020.02.02.1",
  "manifest_version": 2,
  "minimum_chrome_version": "64",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "icons/icon-24.png",
    "default_popup": "app/popup/popup.html"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "page": "app/background/background.html"
  },
  "options_page": "app/options/options.html",
  "permissions": ["bookmarks", "chrome://favicon/", "fontSettings", "activeTab", "https://*.google.com/"]
}

… they are removed by chrome.management:
Bildschirmfoto 2020-05-13 um 15 04 03

Unfortunately there's no way to retrieve a list of currently installed extensions complete with meta data other than chrome.management (afaik at least). I could add a specific workaround for this extension and its custom version number scheme, but that's probably not something very sustainable.

So to really fix this (also for other extension management tools out there), "Bookmark Menu" needs to use a version number scheme that chrome.management doesn't feel compelled meddling with (e.g. removing any leading zeros)… or only cut releases on 2-digit days and months ;-)

(Closing… feel free to re-open if you don't agree)

from chromium-notifier.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.