manifest

`Manifest file is invalid` when uploading my chrome extension to the Chrome Web Store

假装没事ソ 提交于 2020-01-13 09:57:07
问题 I have been developing a chrome extension locally. I just finished it and wanted to upload it to the Chrome Web Store. When I uploaded it and it told me: An error occurred: Invalid manifest. If your manifest includes comments, please remove them as our gallery does not support them yet. I checked the JSON to make sure it it was valid and as far as I can tell it is fully valid. I tried naming it differently and uploading it and it still didn't work. I also tried changing the encoding and that

SugarCRM On-Demand Convert TextField to DropDown

北战南征 提交于 2020-01-13 04:31:27
问题 A similar question was posted here before but it only applied to an On-Site SugarCRM instance (it was also a long time ago). In my case I would like to change the "Billing Country" field from 'TextField' to 'DropDdown' on an On-Demand instance where I don't have access to the config files. How can I do this? So far I have tried different PHP files using the Module Loader but it's not working either. Please find my PHP script below: <?php $manifest = array( 'acceptable_sugar_flavors' => array(

SugarCRM On-Demand Convert TextField to DropDown

久未见 提交于 2020-01-13 04:31:16
问题 A similar question was posted here before but it only applied to an On-Site SugarCRM instance (it was also a long time ago). In my case I would like to change the "Billing Country" field from 'TextField' to 'DropDdown' on an On-Demand instance where I don't have access to the config files. How can I do this? So far I have tried different PHP files using the Module Loader but it's not working either. Please find my PHP script below: <?php $manifest = array( 'acceptable_sugar_flavors' => array(

SugarCRM On-Demand Convert TextField to DropDown

≡放荡痞女 提交于 2020-01-13 04:31:04
问题 A similar question was posted here before but it only applied to an On-Site SugarCRM instance (it was also a long time ago). In my case I would like to change the "Billing Country" field from 'TextField' to 'DropDdown' on an On-Demand instance where I don't have access to the config files. How can I do this? So far I have tried different PHP files using the Module Loader but it's not working either. Please find my PHP script below: <?php $manifest = array( 'acceptable_sugar_flavors' => array(

How can I run this script when the tab reloads (chrome extension)?

自古美人都是妖i 提交于 2020-01-12 07:53:17
问题 So i'd like to run a script when the tab reloads in a specified URL. It almost works, but actually id doesn't :) This is my manifest file: { "manifest_version": 2, "name": "Sample Extension", "description": "Sample Chrome Extension", "version": "1.0", "content_scripts": [ { "matches": ["http://translate.google.hu/*"], "js": ["run.js"] } ], "permissions": [ "activeTab", "tabs" ], "browser_action": { "default_title": "Sample", "default_icon": "icon.png" } } and this is run.js: chrome.tabs

Trouble Parsing XML File Using Perl

喜你入骨 提交于 2020-01-11 12:25:14
问题 I'm trying to parse an XML manifest file for an Articulate eLearning course (imsmanifest.xml). An excerpt of the XML structure is provided below (I'm trying to drill down to adlcp:masteryscore): <?xml version="1.0" encoding="UTF-8"?> <manifest xsi:schemaLocation="http://www.imsproject.org/xsd/imscp_rootv1p1p2 imscp_rootv1p1p2.xsd http://www.imsglobal.org/xsd/imsmd_rootv1p2p1 imsmd_rootv1p2p1.xsd http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd" xmlns:xsi="http://www.w3.org/2001

Set app to require elevation?

佐手、 提交于 2020-01-09 11:39:28
问题 I'm working on the bootstrap application of a new installer for some of our products. So far, I've been relying on two things that I read about somewhere: Applications whose name contains "setup" or "install" will run elevated by default. Applications that run elevated will launch other applications in elevated mode. Recent testing has found that one or both of these statements is false, because one of the applications that I'm launching is a third party installer that requires elevation, and

Set app to require elevation?

醉酒当歌 提交于 2020-01-09 11:39:28
问题 I'm working on the bootstrap application of a new installer for some of our products. So far, I've been relying on two things that I read about somewhere: Applications whose name contains "setup" or "install" will run elevated by default. Applications that run elevated will launch other applications in elevated mode. Recent testing has found that one or both of these statements is false, because one of the applications that I'm launching is a third party installer that requires elevation, and

Visual-Studio Manifest Tool doesn't accept multiple Additional Manifest Files?

强颜欢笑 提交于 2020-01-07 00:33:51
问题 TL;DR (How) is it possible to get Visual Studio (2010 - 2015) to accept multiple manifest files (to merge) via the actual Additional Manifest Files GUI / props option (and not via workarounds)? Simplified walk through: My C++ application embeds an additional manifest file (containing Private Assembly info) via the Visual-C++ Setting: Cfg Properties > Manifest Tool > Input and Output > Additional Manifest Files This works as expected. Now, I need to add/merge in a second manifest file . Since

Problem calling activity from another package in Android

房东的猫 提交于 2020-01-06 17:14:42
问题 Situation: I need to combine several apps into one .apk app. Lets say implement app2 into app1 What i have done: Copied app2 package into main app1 project which i am working, so my app1 has two packages. app2 had this manifest file: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.package.app2" android:versionCode="3" android:versionName="1.2"> <application android:label="App2" android:icon="@drawable/icon"> <activity android:name="Activity1" android