ChromeOverlay

This is a chrome extension that creates an overlay on every tab with a partially transparent .gif or image, or a .mp4 or .webm gif

ChromeOverlayคืออะไร?

ChromeOverlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This is a chrome extension that creates an overlay on every tab with a partially transparent .gif or image, or a .mp4 or .webm gif"

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

screenshot

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

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

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

                        ChromeOverlay is an extension that lets you create a .GIF or image overlay on every webpage you open in Chrome. All you need is the link to an online image or GIF and it'll show up on top of your page!

You can adjust the image transparency and set favorite GIF links for easier access.

Now with support for .mp4 and .webm files! These files won't load on certain sites that have Content Security Policy blocking loading of video content, but should work on most sites.

options:
disable the image	checking this checkbox removes the overlayed image
GIF transparency	adjust this slider to change how transparent the overlay is
Load current URL	Loads the URL currently being used as the overlay into the textbox. Useful if you've set a GIF without saving it and changed the text
Set as new overlay	Set the link from the textbox as the current link to display on the page
Save URL as favorite	Adds the link from the textbox as a new favorite

Favorite options

Load URL	Loads the favorite URL into the textbox and sets it as the current link
Delete	Removes the favorite. Has no effect on the currently loaded link                    

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

ชื่อ ChromeOverlay ChromeOverlay
ID bfcanpejffolidoommjpiioaakhhofch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chromeoverlay/bfcanpejffolidoommjpiioaakhhofch
คำอธิบาย This is a chrome extension that creates an overlay on every tab with a partially transparent .gif or image, or a .mp4 or .webm gif
ขนาดไฟล์ 17.09 KB
จำนวนการติดตั้ง 643
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2019-12-24
วันที่เผยแพร่ 2019-12-21
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChromeOverlay",
    "version": "0.0.0.3",
    "description": "This is a chrome extension that creates an overlay on every tab with a partially transparent .gif or image, or a .mp4 or .webm gif",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "declarativeContent",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/overlayContent.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/parseIframe.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "\/content\/*"
    ],
    "options_page": "popup\/popup.html",
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/OverlayIcon.png"
        },
        "icons": {
            "16": "images\/OverlayIcon.png"
        }
    },
    "manifest_version": 2
}