OctoPermalinker

Fixes broken GitHub links.

ما هو OctoPermalinker؟

OctoPermalinker هو إضافة Chrome تم تطويرها بواسطة Joseph Frazier، والميزة الرئيسية لها هي "Fixes broken GitHub links.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة OctoPermalinker

قم بتنزيل ملفات الامتداد OctoPermalinker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        OctoPermalinker is a browser extension that searches GitHub comments/files for links to files on branches, and adds a link to where the branch pointed when the comment/file was made/updated. This helps you avoid following a link that was broken after being posted. For context, here's some discussion about broken GitHub links:
https://news.ycombinator.com/item?id=8046710                    

معلومات أساسية عن التمديد

الاسم OctoPermalinker OctoPermalinker
ID bcnkgcoohaaaclieohdlkphgfinkgbfm
عنوان URL الرسمي https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm
الوصف Fixes broken GitHub links.
حجم الملف 373 KB
عدد التثبيتات 239
النسخة الحالية 1.0.0
آخر تحديث 2017-05-20
تاريخ النشر 2017-05-20
تقييم 5.00/5 مجموع تقييمات 1
المطور Joseph Frazier
نوع الدفع free
موقع الإضافة https://github.com/josephfrazier/octopermalinker
عنوان صفحة المساعدة https://github.com/josephfrazier/octopermalinker/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoPermalinker",
    "version": "1.0.0",
    "manifest_version": 2,
    "author": "Joseph Frazier",
    "description": "Fixes broken GitHub links.",
    "homepage_url": "https:\/\/github.com\/josephfrazier\/octopermalinker",
    "icons": {
        "212": "link-icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "app.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "link-icon.png"
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/",
        "https:\/\/gist.github.com\/"
    ]
}