Urler

Url pikcup utilities

Urlerคืออะไร?

Urler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ahomu และคุณลักษณะหลักของมันคือ "Url pikcup utilities"

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

screenshot

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

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

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

                        # Urler - Chrome Extension

**This extension is currently beta**

![Logo](app/images/Urler-logo.png)

## Feature

- Copy current tab's url
- Copy all open tab urls
- Open ``
- Open ``
- Open ``
- Open ``
- Open ``
- Open [Facebook Debugger](https://developers.facebook.com/tools/debug/) with current tab's url
- Open [Structured Data Testing Tool](https://developers.google.com/structured-data/testing-tool/) with current tab's url

## Images

- [Squarespace Logo — Squarespace](http://www.squarespace.com/logo/)
- 
Popup icons made by Google from www.flaticon.com is licensed by CC BY 3.0

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

ชื่อ Urler Urler
ID eihihfjgohgnddfnbclochbeljojmgge
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/urler/eihihfjgohgnddfnbclochbeljojmgge
คำอธิบาย Url pikcup utilities
ขนาดไฟล์ 26.51 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2015-06-28
วันที่เผยแพร่ 2015-06-28
ผู้พัฒนา ahomu
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ahomu/Urler
URL หน้าช่วยเหลือ https://github.com/ahomu/Urler/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Urler",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": [
        "clipboardRead",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}