Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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 1 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.