Ampie

Social navigator for the web

Ampieคืออะไร?

Ampie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ampie.app และคุณลักษณะหลักของมันคือ "Social navigator for the web"

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

screenshot

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

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

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

                        Easily see context for the page you are on, to help you dig deeper rabbit holes and discover connections you wouldn’t have discovered otherwise.

On any webpage, Ampie will show you twitter and hacker news conversations mentioning it, other web pages linking to it, as well as other discussed URLs on the same domain.

Ampie also lets you amplify any page so that other ampie users will see that you have been there when they visit that page.                    

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

ชื่อ Ampie Ampie
ID ikdgincnppajmpmnhfheflannaiapmlm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ampie/ikdgincnppajmpmnhfheflannaiapmlm
คำอธิบาย Social navigator for the web
ขนาดไฟล์ 1.77 MB
จำนวนการติดตั้ง 305
เวอร์ชันปัจจุบัน 2.4.3
อัปเดตครั้งล่าสุด 2021-10-12
วันที่เผยแพร่ 2019-07-21
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://ampie.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ampie.app
URL หน้านโยบายความเป็นส่วนตัว https://posobin.com/ampie_privacy_policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Social navigator for the web",
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "cookies",
        "unlimitedStorage",
        "https:\/\/ampie.s3.amazonaws.com\/",
        "https:\/\/hacker-news.firebaseio.com\/",
        "https:\/\/*.ampie.app\/"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "name": "Ampie",
    "background": {
        "scripts": [
            "out\/shared.js",
            "out\/bg-shared.js",
            "out\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icons\/ampie-32.png",
        "48": "icons\/ampie-48.png",
        "96": "icons\/ampie-96.png",
        "128": "icons\/ampie-128.png"
    },
    "commands": {
        "amplify_page": {
            "suggested_key": {
                "default": "Alt+Shift+A",
                "mac": "Alt+Shift+A"
            },
            "description": "Amplify the page you are on"
        },
        "open_page_context": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "Alt+Shift+C"
            },
            "description": "Open current page context in a new tab"
        }
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'self'; connect-src *; script-src 'self';",
    "content_scripts": [
        {
            "css": [
                "assets\/content-style.css",
                "assets\/fonts-content-style.css"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "out\/shared.js",
                "out\/bg-shared.js",
                "out\/content-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "version": "2.4.3"
}