Octobox Web Extension

Makes your GitHub notifications icon link to Octobox instead of GitHub.

Octobox Web Extension क्या है?

Octobox Web Extension tfrommen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes your GitHub notifications icon link to Octobox instead of GitHub."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Octobox Web Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Octobox is an awesome inbox-like entrypoint to your GitHub notifications. Unfortunately, however, it does not integrate with the GitHub UI, meaning the GitHub notifications icon still links to the GitHub notifications page.

This cross-browser web extension fixes that! While the notifications icon still looks like before—including its status indicator—it now points to your Octobox. Once there, you can click one of your notifications to go to the according page on GitHub. In case you want to go back to the GitHub dashboard, the web extension injects a GitHub icon to the menu bar for you.

By default, the web extension connects to the official Octobox at https://octobox.io. However, you can also supply a custom URL in the settings, in case you are hosting your own Octobox somewhere.                    

एक्सटेंशन की मूल जानकारी

नाम Octobox Web Extension Octobox Web Extension
ID efhkcafmbonnomnimilnephjgeccffdn
आधिकारिक URL https://chrome.google.com/webstore/detail/efhkcafmbonnomnimilnephjgeccffdn
विवरण Makes your GitHub notifications icon link to Octobox instead of GitHub.
फ़ाइल का आकार 18.64 KB
स्थापना संख्या 118
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2018-05-31
प्रकाशन तिथि 2018-05-31
डेवलपर tfrommen
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tfrommen/octobox-web-extension
सहायता पृष्ठ URL https://github.com/tfrommen/octobox-web-extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Octobox Web Extension",
    "description": "Makes your GitHub notifications icon link to Octobox instead of GitHub.",
    "version": "1.3.0",
    "short_name": "Octobox",
    "homepage_url": "https:\/\/github.com\/tfrommen\/octobox-web-extension",
    "author": "Thorsten Frommen",
    "icons": {
        "48": "icons\/icon.png",
        "96": "icons\/[email protected]"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "content-scripts\/github.js"
            ]
        },
        {
            "matches": [
                "*:\/\/octobox.io\/*"
            ],
            "js": [
                "content-scripts\/octobox.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options_ui\/page.html",
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}