Icon Changer
Chrome Extension to dynamically change the toolbar icon image.
什麼是Icon Changer?
Icon Changer是由ikeiwumene開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension to dynamically change the toolbar icon image.”。
擴展截圖
下載Icon Changer擴展crx文件
下載Icon Changer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This chrome extension changes its toolbar icon image every 60 seconds. It demonstrates the ability to change the icon displayed. 擴展基本資訊
| 名稱 | |
| ID | gchflnohlhkocmeicoeminnbfediifag |
| 官方網址 | https://chrome.google.com/webstore/detail/icon-changer/gchflnohlhkocmeicoeminnbfediifag |
| 簡介 | Chrome Extension to dynamically change the toolbar icon image. |
| 檔案大小 | 80.05 KB |
| 安裝次數 | 57 |
| 目前版本 | 0.1.1 |
| 更新時間 | 2021-06-10 |
| 上架時間 | 2021-02-03 |
| 開發者 | ikeiwumene |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Icon Changer",
"description": "Chrome Extension to dynamically change the toolbar icon image.",
"version": "0.1.1",
"manifest_version": 2,
"browser_action": {
"default_icon": "images\/icon128.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js\/lib\/jquery.min.js",
"js\/lib\/oAuth.js",
"js\/lib\/sha1.js",
"js\/lib\/twitter.js",
"js\/background.js"
],
"persistent": false
},
"permissions": [
"storage",
"alarms",
"tabs",
"notifications",
"https:\/\/servedby.revive-adserver.net\/*",
"https:\/\/d1kphapjj0aw84.cloudfront.net\/*",
"https:\/\/api.twitter.com\/*",
"http:\/\/vividiov.online\/*",
"http:\/\/vividiov.com\/*",
"https:\/\/vivid-media-test.herokuapp.com\/"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
"images\/icon48.png"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/www.vividiov.com\/*"
],
"js": [
"js\/session.js"
]
}
]
} | |