Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

ما هو Shortlink Finder؟

Shortlink Finder هو إضافة Chrome تم تطويرها بواسطة http://joe.gl، والميزة الرئيسية لها هي "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

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

screenshot

تحميل ملف CRX للإضافة Shortlink Finder

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

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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

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

الاسم Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
الوصف Displays an icon if the current page has an official shortlink and makes it easy to copy!
حجم الملف 42.51 KB
عدد التثبيتات 23
النسخة الحالية 1.1
آخر تحديث 2014-07-11
تاريخ النشر 2014-07-11
تقييم 2.33/5 مجموع تقييمات 3
المطور http://joe.gl
نوع الدفع free
موقع الإضافة https://github.com/glombek/ShortlinkExtension
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}