MagicNumbers
Find&Preview your magic number with this extension!
什麼是MagicNumbers?
MagicNumbers是由underscorestarchaser開發的Chrome擴展程式,該擴展的主要功能是“Find&Preview your magic number with this extension!”。
擴展截圖
下載MagicNumbers擴展crx文件
下載MagicNumbers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you bored?
CTRL+C and CTRL+V too much time
Now it easy!
You only highlight some magicnumber and right click now you can "warp" to nhentai or you can doubleclick on magicnumber to preview it <3 擴展基本資訊
| 名稱 | |
| ID | eachmpbcaoeffcmbeokmafkgdaffedpi |
| 官方網址 | https://chrome.google.com/webstore/detail/magicnumbers/eachmpbcaoeffcmbeokmafkgdaffedpi |
| 簡介 | Find&Preview your magic number with this extension! |
| 檔案大小 | 56.42 KB |
| 安裝次數 | 162 |
| 目前版本 | 1.0 |
| 更新時間 | 2020-04-02 |
| 上架時間 | 2020-03-31 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | underscorestarchaser |
| 付費類型 | free |
| 擴展官網 | http://starchaser.me/magic_numbers |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "MagicNumbers",
"description": "Find&Preview your magic number with this extension!",
"version": "1.0",
"browser_action": {
"default_icon": "icons\/32.png"
},
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"64": "icons\/64.png",
"128": "icons\/128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
],
"css": [
"style.css"
]
}
]
} | |