MagicNumbers
Find&Preview your magic number with this extension!
Cos'è MagicNumbers?
MagicNumbers è un'estensione di Chrome sviluppata da underscorestarchaser, e la sua funzione principale è "Find&Preview your magic number with this extension!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MagicNumbers
Scarica i file di estensione MagicNumbers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | eachmpbcaoeffcmbeokmafkgdaffedpi |
| URL Ufficiale | https://chrome.google.com/webstore/detail/magicnumbers/eachmpbcaoeffcmbeokmafkgdaffedpi |
| Descrizione | Find&Preview your magic number with this extension! |
| Dimensione del File | 56.42 KB |
| Conteggio Installazioni | 162 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2020-04-02 |
| Data di Pubblicazione | 2020-03-31 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | underscorestarchaser |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://starchaser.me/magic_numbers |
| Lingue Supportate | 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"
]
}
]
} | |