hackr
a fun hacker simulator
Wat is hackr?
hackr is een Chrome-extensie ontwikkeld door eliranwebdev, en de belangrijkste functie is "a fun hacker simulator".
Extensie Screenshots
Download het CRX-bestand van de extensie hackr
Download hackr-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | kflcnaifkjeanhdfomcdkcdfjoanfila |
| Officiële URL | https://chrome.google.com/webstore/detail/hackr/kflcnaifkjeanhdfomcdkcdfjoanfila |
| Beschrijving | a fun hacker simulator |
| Bestandsgrootte | 38.93 KB |
| Aantal Installaties | 93 |
| Huidige Versie | 0.1.1 |
| Laatst Bijgewerkt | 2016-02-20 |
| Publicatiedatum | 2016-02-20 |
| Beoordeling | 4.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | eliranwebdev |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "hackr",
"description": "a fun hacker simulator",
"version": "0.1.1",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"lib\/jquery\/jquery-2.2.0.min.js",
"lib\/hackr\/hackr.js",
"app.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_title": "hackr()",
"default_icon": "images\/logo-48.png"
},
"icons": {
"48": "images\/logo-48.png",
"128": "images\/logo-128.png"
},
"manifest_version": 2
} | |