HomyeeKing / homybe

a browser extension for making life easier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

intention

sometimes the url are too long to read, and if we want to check some query in url will be difficult

so I use URLSearchParams to display the query in table list

Use

git clone git@github.com:HomyeeKing/homybe.git

then laod it from chrome

preview

when the url is https://github.com/?q=123,the popup will be

quick get qrcode when hover the image

2023-07-11.21.14.12.mov

explain manifest.json structure

{
  "minifest_version": 3,
  "permission": ["tabs"], // the list that enable chrome features
  "optional_permissions": ["unlimitedStorage"], //
  "host_permissions": ["http://www.blogger.com/", "*://*/*"], // specify which domain can run the extension
  "content_security_policy": {  // manage CSP
    "extension_pages": "...", // in the form of chrome-extension://<extension-id>/foo.html
    "sandbox": "..."
  },

  "action":{
      
  }

}

About

a browser extension for making life easier


Languages

Language:JavaScript 75.9%Language:HTML 17.4%Language:CSS 6.7%