GitHub Pages

Add a link to the GitHub-Page of a GitHub repository

What is GitHub Pages?

GitHub Pages is a Chrome extension developed by Marco Rieger, and its main feature is "Add a link to the GitHub-Page of a GitHub repository".

Extension Screenshots

screenshot

Download GitHub Pages Extension CRX File

Download GitHub Pages 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

                                            

Extension Basic Information

Name GitHub Pages GitHub Pages
ID opeajkladelglljdblcjgkiclppcbkae
Official URL https://chromewebstore.google.com/detail/github-pages/opeajkladelglljdblcjgkiclppcbkae
Description Add a link to the GitHub-Page of a GitHub repository
File Size 7.93 KB
Installation Count 145
Current Version 1.2.0
Last Updated 2015-11-13
Publish Date 2015-11-13
Developer Marco Rieger
Payment Type free
Extension Website https://github.com/ins0/chrome-gh-pages
Help Page URL https://github.com/ins0/chrome-gh-pages/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Pages",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "Add a link to the GitHub-Page of a GitHub repository",
    "homepage_url": "https:\/\/github.com\/ins0\/chrome-gh-pages",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/gh-pages.js"
            ]
        }
    ]
}