Do the harlem shake
Make the current page do the harlem shake
Vad är Do the harlem shake?
Do the harlem shake är en Chrome-tillägg utvecklad av Jamie Davies, och dess huvudfunktion är "Make the current page do the harlem shake".
Ladda ner Do the harlem shake-förlängningens CRX-fil
Ladda ner Do the harlem shake-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Make any website do the harlem shake Grundläggande Information om Tillägg
| Namn | |
| ID | mobbapdpmefdbmdhkokjehgdnaglfkfc |
| Officiell webbadress | https://chromewebstore.google.com/detail/do-the-harlem-shake/mobbapdpmefdbmdhkokjehgdnaglfkfc |
| Beskrivning | Make the current page do the harlem shake |
| Filstorlek | 1.09 MB |
| Antal Installationer | 203 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2014-05-29 |
| Publiceringsdatum | 2014-05-29 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Jamie Davies |
| Betalningssätt | free |
| Stödda Språk | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Do the harlem shake",
"description": "Make the current page do the harlem shake",
"author": "Jamie Davies",
"homepage_url": "http:\/\/twitter.com\/viralpickaxe",
"offline_enabled": false,
"version": "1.0",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_title": "Do the harlem shake!",
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
}
},
"manifest_version": 2
} | |