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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    ]
}