bopper
This extension will allow you to create a custom new tab page
Vad är bopper?
bopper är en Chrome-tillägg utvecklad av catdog, och dess huvudfunktion är "This extension will allow you to create a custom new tab page".
Tilläggsskärmbilder
Ladda ner bopper-förlängningens CRX-fil
Ladda ner bopper-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
Ever wanted to create a new tab without the boring websites that usually opens?? Now you can choose an image and text that will open when a new tab is created. Grundläggande Information om Tillägg
| Namn | |
| ID | jhmihlolibapfbcfpilpfjjcidloolka |
| Officiell webbadress | https://chromewebstore.google.com/detail/bopper/jhmihlolibapfbcfpilpfjjcidloolka |
| Beskrivning | This extension will allow you to create a custom new tab page |
| Filstorlek | 9.92 MB |
| Antal Installationer | 10 |
| Aktuell Version | 3.2 |
| Senast Uppdaterad | 2017-02-13 |
| Publiceringsdatum | 2017-02-13 |
| Betyg | 5.00/5 Totalt 6 Betyg |
| Utvecklare | catdog |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "bopper",
"description": "This extension will allow you to create a custom new tab page",
"version": "3.2",
"options_page": "option2.html",
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"storage"
],
"optional_permissions": [
"tabs"
],
"web_accessible_resources": [
"options2.html"
],
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "bopp.html"
},
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |