Porgify
Replaces all images on all pages with images of Porg.
Vad är Porgify?
Porgify är en Chrome-tillägg utvecklad av liamrosenfeld, och dess huvudfunktion är "Replaces all images on all pages with images of Porg.".
Tilläggsskärmbilder
Ladda ner Porgify-förlängningens CRX-fil
Ladda ner Porgify-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
A chrome extension that replaces every image with one of porg
GitHub Repo:
https://github.com/liamrosenfeld/porgify Grundläggande Information om Tillägg
| Namn | |
| ID | anohiacdcfnoceaialpnnbbdcecamfkl |
| Officiell webbadress | https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl |
| Beskrivning | Replaces all images on all pages with images of Porg. |
| Filstorlek | 523 KB |
| Antal Installationer | 75 |
| Aktuell Version | 2.0.0 |
| Senast Uppdaterad | 2021-03-12 |
| Publiceringsdatum | 2018-04-16 |
| Betyg | 5.00/5 Totalt 10 Betyg |
| Utvecklare | liamrosenfeld |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/liamrosenfeld/porgify |
| Hjälpsida URL | https://github.com/liamrosenfeld/porgify/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"js": [
"porgify\/porgify.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": false
}
],
"background": {
"scripts": [
"porgify\/bg.js"
]
},
"description": "__MSG_appDesc__",
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "2.0.0",
"default_locale": "en",
"icons": {
"128": "porgify\/logo128.png",
"16": "porgify\/logo16.png"
},
"permissions": [
"storage",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_ui": {
"page": "porgify\/options\/options.html",
"chrome_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |