Copy GIF (Experimental)
The extension adds a menu item so that you can try to copy the GIF image as HTML.
Copy GIF (Experimental)คืออะไร?
Copy GIF (Experimental) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.blackglory.me และคุณลักษณะหลักของมันคือ "The extension adds a menu item so that you can try to copy the GIF image as HTML."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy GIF (Experimental)
ดาวน์โหลดไฟล์ส่วนขยาย Copy GIF (Experimental) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Whether or not pasting works depends on the application being pasted, not all applications can be pasted in HTML format. ## Technical details Chrome can only copy the bitmap to the clipboard, which means that GIF animations will be copied as a single-frame image. By looking at the results of GIF image copying from IE, Edge(not Edge based on Chromium), Firefox, I found that they used additional data formats to describe the contents of GIF images. However, this format cannot be implemented via browser-side JavaScript, if one day the Web standard does provide an advanced clipboard API, it may be possible to copy GIF images directly. Copying a GIF as HTML is an alternative method, the clipboard content does not contain the image data, only its hyperlink, and the application that is pasted needs to fetch the GIF image. You can also select a section of GIF image that contains text and use the browser's original copy command, which is the same thing that the extension does, with no essential difference. Github: https://github.com/BlackGlory/copy-gif
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cehkcdgmdkpbheocenmlclejafodogfk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/copy-gif-experimental/cehkcdgmdkpbheocenmlclejafodogfk |
คำอธิบาย | The extension adds a menu item so that you can try to copy the GIF image as HTML. |
ขนาดไฟล์ | 20.37 KB |
จำนวนการติดตั้ง | 1,083 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2021-05-11 |
วันที่เผยแพร่ | 2018-02-20 |
คะแนน | 4.00/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | http://www.blackglory.me |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/BlackGlory/copy-gif |
URL หน้าช่วยเหลือ | https://github.com/BlackGlory/copy-gif/issues |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.0.2", "default_locale": "en", "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "icons": { "16": "assets\/images\/icon-16.png", "32": "assets\/images\/icon-32.png", "48": "assets\/images\/icon-48.png", "64": "assets\/images\/icon-64.png", "128": "assets\/images\/icon-128.png" }, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvSZRzn6wHzoTWLjDhuGo8xPEhymuYWD9fC71w2Pm+WsOyC98aw6sWq1BQQMbjkhnjRKWUHc2mtIJH7IyQznqVeZv+SpyHzcDp\/F8K8+\/utBjNpO1oUJKfuX+cI3ovoKYSaCkxCmoneVxyB0ivL6v8+\/GAAnitkXDBuuVnM3fzCdKdylBW\/Cetmdov+DwzCiyOF+suchP2\/HK95jRfqOBbPOtYGQp+SJ0KF9M3sv5PQ4HtYB1rppDNuLEtiyl7by4mcNaYjhM9OL1YXXzE9vXgd6n3xvko6lcXJD9vea5zwjW5jMJSHInihV5MkFON4rtJkezsEiXCFcuXs6HIztk3wIDAQAB", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "contextMenus" ] } |