Active Forks

Show Active Forks for any GitHub project.

What is Active Forks?

Active Forks is a Chrome extension developed by ridvaltun, and its main feature is "Show Active Forks for any GitHub project.".

Extension Screenshots

screenshot

Download Active Forks Extension CRX File

Download Active Forks 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 allows you to find the most active forks of a repository.                    

Extension Basic Information

Name Active Forks Active Forks
ID kicchcnkocbmnmlpmjoojinofkagcjpi
Official URL https://chromewebstore.google.com/detail/active-forks/kicchcnkocbmnmlpmjoojinofkagcjpi
Description Show Active Forks for any GitHub project.
File Size 32.13 KB
Installation Count 36
Current Version 1.0.1
Last Updated 2021-06-23
Publish Date 2020-10-15
Developer ridvaltun
Email [email protected]
Payment Type free
Extension Website https://github.com/ridvanaltun/active-forks-extension
Help Page URL https://github.com/ridvanaltun/active-forks-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Active Forks",
    "short_name": "Active Forks",
    "version": "1.0.1",
    "description": "Show Active Forks for any GitHub project.",
    "icons": {
        "16": "icons\/active-forks-logo-16.png",
        "48": "icons\/active-forks-logo-48.png",
        "128": "icons\/active-forks-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*",
                "*:\/\/*.ridvanaltun.github.io\/active-forks*"
            ],
            "js": [
                "dist\/bundles\/activeforks.bundle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/active-forks-logo-16.png",
            "48": "icons\/active-forks-logo-48.png",
            "128": "icons\/active-forks-logo.png"
        },
        "default_title": "Active Forks"
    },
    "background": {
        "scripts": [
            "dist\/bundles\/background.bundle.js"
        ]
    },
    "options_ui": {
        "page": "src\/options\/options.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}