GPF Signs
This extension allows you to add signs in the GPF fast and easy.
Что такое GPF Signs?
GPF Signs - это расширение Chrome, разработанное Nico S., и его основная функция - "This extension allows you to add signs in the GPF fast and easy.".
Скачать файл CRX расширения GPF Signs
Скачайте файлы расширений GPF Signs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | |
ID | glckjnfidpjlkolpkmfpehhkabbcbpgh |
Официальный URL | https://chrome.google.com/webstore/detail/firmas-gpf/glckjnfidpjlkolpkmfpehhkabbcbpgh |
Описание | This extension allows you to add signs in the GPF fast and easy. |
Размер файла | 213 KB |
Количество установок | 33 |
Текущая Версия | 2.0.2 |
Последнее Обновление | 2017-08-24 |
Дата публикации | 2017-08-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Nico S. |
Тип оплаты | free |
Поддерживаемые языки | en,ca,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "short_name": "GPFSigns", "description": "__MSG_descr__", "version": "2.0.2", "options_page": "config.html", "content_scripts": [ { "matches": [ "https:\/\/productforums.google.com\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "default_locale": "es", "browser_action": { "default_icon": "images\/48.png", "default_popup": "popup.html" }, "icons": { "128": "images\/128.png", "16": "images\/16.png" }, "permissions": [ "storage", "https:\/\/productforums.google.com\/*", "https:\/\/fonts.googleapis.com\/*" ] } |