Optimiser

The Optimiser extension allows you to manage the optimisaiton of your website directly through Google Chrome!

Optimiserคืออะไร?

Optimiser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย theOptimiser และคุณลักษณะหลักของมันคือ "The Optimiser extension allows you to manage the optimisaiton of your website directly through Google Chrome!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Optimiser

ดาวน์โหลดไฟล์ส่วนขยาย Optimiser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        The optimiser Chrome extension allows you to manage the onsite optimisation for your website directly through Google Chrome. You can change the below items easily through the extension;

- Page Title Tag
- Meta Description
- H1 Headings
- Canonical Link 
- Meta Robots tag
- Page Redirects

Steps for installation
1. Get your API key from your SEO dashboard
2. Enter your API key within the extensions popup tab
3. Navigate to your website 
4. Update the items you want to edit
5. Hit Save
6. Refresh the page to see the changes

Common Issues
- If the optimiser icon does not show on a website you have within your account, try hitting the refresh button in the extension settings                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Optimiser Optimiser
ID kabpknmjdpcokjaanhbmekpjdlhbhkfg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/optimiser/kabpknmjdpcokjaanhbmekpjdlhbhkfg
คำอธิบาย The Optimiser extension allows you to manage the optimisaiton of your website directly through Google Chrome!
ขนาดไฟล์ 111 KB
จำนวนการติดตั้ง 111
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-11-08
วันที่เผยแพร่ 2017-11-08
ผู้พัฒนา theOptimiser
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Optimiser",
    "description": "The Optimiser extension allows you to manage the optimisaiton of your website directly through Google Chrome!",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "permissions": [
            "http:\/\/*\/*",
            "https:\/\/*\/*"
        ],
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "img\/icon.png",
        "64": "img\/icon.png",
        "32": "img\/icon.png",
        "16": "img\/icon.png"
    },
    "web_accessible_resources": [
        "img\/icon.png",
        "img\/Active.png",
        "img\/logo.png",
        "img\/load.gif"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "mystyles.css"
            ],
            "js": [
                "jq.js",
                "myscript.js"
            ],
            "html": [
                "popup.html"
            ],
            "all_frames": false
        }
    ]
}