
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
unloosen-ruby-loader
Advanced tools
Unloosen is Chrome extension framework!
app.rb# app.rb
require "unloosen"
content_script site: "www.example.com" do
h1 = document.getElementById("")
h1.innerText = "Unloosen Example Page!"
end
manifest.json{
"manifest_version": 3,
"name": "unloosen quickstart",
"description": "this extension is running by ruby!",
"version": "0.0.1",
"content_scripts": [
{
"js": [
"loader-content-script.esm.js"
],
"matches": ["http://www.example.com/"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": ["*"],
"matches": ["<all_urls>"]
}
]
}
In this time, download loader-content-script.esm.js and module-content-script.esm.js and place same dir.
In your browser, toggle on developer mode and select load unpackaged extension then select current dir.
access http://www.example.com/
when everything goes fine, the header will be "Unloosen Example Page!".
| name | method alias | loadfile |
|---|---|---|
| Popup | popup | module-popup.esm.js |
| Content Script | content_script | loader-content-script.esm.js and module-content-script.esm.js(both required) |
| Background | background | module-background.esm.js |
| SandBox(WIP) | sandbox | module-sandbox.esm.js |
| OnInstalled event | on_installed | module-background.esm.js |
https://github.com/aaaa777/unloosen-test-extension
TODO: Delete this and the text above, and describe your gem
install with npm i unloosen-ruby-loader
after downloading, loader/module files in node_modules/unloosen-ruby-loader/dist/entry/*.esm.js
Bug reports and pull requests are welcome on GitHub at https://github.com/aaaa777/unloosen.
FAQs
ruby on wasm for chrome extension
We found that unloosen-ruby-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.