Flying Meme Animator
This is chrome extension for exposing funny GIFs.
什麼是Flying Meme Animator?
Flying Meme Animator是由chancethecoder開發的Chrome擴展程式,該擴展的主要功能是“This is chrome extension for exposing funny GIFs.”。
擴展截圖
下載Flying Meme Animator擴展crx文件
下載Flying Meme Animator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is chrome extension for exposing funny GIFs on typing/click event on your browser.
Features:
- change current GIF
- on/off toggle 擴展基本資訊
| 名稱 | |
| ID | flmnecgbkcpalbenlbdfljhepngbdhdp |
| 官方網址 | https://chromewebstore.google.com/detail/flying-meme-animator/flmnecgbkcpalbenlbdfljhepngbdhdp |
| 簡介 | This is chrome extension for exposing funny GIFs. |
| 檔案大小 | 126 KB |
| 安裝次數 | 85 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2021-11-02 |
| 上架時間 | 2021-11-01 |
| 開發者 | chancethecoder |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": "Youngkyun Kim",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.0.0",
"manifest_version": 2,
"default_locale": "en",
"browser_action": {
"default_icon": "images\/doge-head-128.png",
"icons": {
"16": "images\/doge-head-16.png",
"48": "images\/doge-head-48.png",
"128": "images\/doge-head-128.png"
},
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
]
}
],
"web_accessible_resources": [
"images\/*.gif"
]
} | |