Blogspot Quickedit Links

Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.

ما هو Blogspot Quickedit Links؟

Blogspot Quickedit Links هو إضافة Chrome تم تطويرها بواسطة https://so-how-do-i.blogspot.com، والميزة الرئيسية لها هي "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

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

screenshot

تحميل ملف CRX للإضافة Blogspot Quickedit Links

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

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

                        Using a JS contentscript, adds quickedit links to the posts and gadgets on the new themes, which don't support them anymore.                    

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

الاسم Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
عنوان URL الرسمي https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
الوصف Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
حجم الملف 14.06 KB
عدد التثبيتات 145
النسخة الحالية 1.1
آخر تحديث 2017-03-26
تاريخ النشر 2017-03-26
تقييم 4.20/5 مجموع تقييمات 5
المطور https://so-how-do-i.blogspot.com
نوع الدفع free
موقع الإضافة https://so-how-do-i.blogspot.com
عنوان صفحة المساعدة https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blogspot Quickedit Links",
    "description": "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.",
    "version": "1.1",
    "icons": {
        "16": "logo_blogger_color_1x_web_16dp.png",
        "32": "logo_blogger_color_1x_web_32dp.png",
        "48": "logo_blogger_color_1x_web_48dp.png",
        "96": "logo_blogger_color_1x_web_96dp.png"
    },
    "browser_action": {
        "default_icon": "popupicon.png",
        "default_popup": "popup.html",
        "default_title": "Click to edit!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}