OrgMeter Chrome Extension

Adds some cool features to OrgMeter

What is OrgMeter Chrome Extension?

OrgMeter Chrome Extension is a Chrome extension developed by https://orgmeter.com, and its main feature is "Adds some cool features to OrgMeter".

Extension Screenshots

screenshot
screenshot
screenshot

Download OrgMeter Chrome Extension Extension CRX File

Download OrgMeter Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension will allow you to drag and drop files (attachments) from gmail directly into the OrgMeter application.Additionally it will allow to use keyboard shortcuts on the OrgMeter site.                    

Extension Basic Information

Name OrgMeter Chrome Extension OrgMeter Chrome Extension
ID cppddcpdiccfeadakmnpgchpbcakplhf
Official URL https://chromewebstore.google.com/detail/orgmeter-chrome-extension/cppddcpdiccfeadakmnpgchpbcakplhf
Description Adds some cool features to OrgMeter
File Size 11.82 KB
Installation Count 73
Current Version 1.0.13
Last Updated 2023-08-02
Publish Date 2018-04-17
Rating 5.00/5 Total 2 Ratings
Developer https://orgmeter.com
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OrgMeter Chrome Extension",
    "version": "1.0.13",
    "default_locale": "en",
    "manifest_version": 3,
    "description": "Adds some cool features to OrgMeter",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": "org-32x32.png",
        "default_title": "OrgMeter Chrome Extension"
    },
    "content_scripts": [
        {
            "js": [
                "shortcut_settings.js",
                "util.js",
                "shortcut_shared.js",
                "shortcut.js",
                "injector.js"
            ],
            "matches": [
                "*:\/\/*.orgmeter.com\/*",
                "*:\/\/org.loc\/*"
            ]
        },
        {
            "js": [
                "injector_gmail.js"
            ],
            "matches": [
                "*:\/\/*.mail.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src https:\/\/* data: blob: filesystem:;"
    },
    "host_permissions": [
        "*:\/\/*.orgmeter.com\/*",
        "*:\/\/org.loc\/*",
        "*:\/\/*.mail.google.com\/*",
        "*:\/\/mail-attachment.googleusercontent.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "org-32x32.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "injector.js"
            ],
            "matches": [
                "*:\/\/*.orgmeter.com\/*",
                "*:\/\/org.loc\/*"
            ]
        },
        {
            "resources": [
                "injector_gmail.js"
            ],
            "matches": [
                "*:\/\/*.mail.google.com\/*"
            ]
        }
    ]
}