
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
meteor-chrome-extension-utils
Advanced tools
Lets you call extension methods from the meteor client
This package bundles useful utils for working with a chrome extension.
This package has two parts.
meteor add handtrix:chrome-extension-utils
And add your extension id to your Meteor.settings
{
"public": {
"chromeExtension": {
"id": "fclmgmkhbncahpifpidimcjhbfaaiplh"
}
}
In your chrome extension install this package via:
npm install --save meteor-chrome-extension-utils
bower install --save meteor-chrome-extension-utils
Include the file manually.
meteor client
ChromeExtension.isInstalled(function(isInstalled){
});
meteor client
ChromeExtension.isBrowserSupported;
meteor client
ChromeExtension.install(function(err, success){
});
meteor client
ChromeExtension.getWebstoreUrl();
meteor client
ChromeExtension.navigateToWebstore;
meteor client
ChromeExtension.call('foo', 'param1', 'param2', function(result){
console.log(result);
});
chrome extension
ChromeExtension.methods({
foo: function(param1, param2, callback){
// To something here
callback('bar');
}
});
By default all urls will be allowed to connect to your extension. But you can secure it by whitelisting specific urls:
ChromeExtension.whitelistUrl('http://localhost:3000/');
ChromeExtension.whitelistUrl('http://myapp.meteor.com/');
FAQs
Lets you call extension methods from the meteor client
The npm package meteor-chrome-extension-utils receives a total of 3 weekly downloads. As such, meteor-chrome-extension-utils popularity was classified as not popular.
We found that meteor-chrome-extension-utils 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.