Octobox Web Extension

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

Octobox Web Extensionคืออะไร?

Octobox Web Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tfrommen และคุณลักษณะหลักของมันคือ "Makes your GitHub notifications icon link to Octobox instead of GitHub."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Octobox Web Extension

ดาวน์โหลดไฟล์ส่วนขยาย Octobox Web Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}