Octobox Web Extension

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

Octobox Web Extension란 무엇입니까?

Octobox Web Extension은(는) tfrommen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes your GitHub notifications icon link to Octobox instead of GitHub."입니다.

Octobox Web Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}